Note: This release is in preview. Features described here don’t become generally available until the latest general availability date that Salesforce announces for this release. Before then, and where features are noted as beta, pilot, or developer preview, we can’t guarantee general availability within any particular time frame or at all. Make your purchase decisions only on the basis of generally available products and features.

ccrz.cc_bean_MockContactAddress

Represents a ccrz__E_ContactAddr__c record.

Compatibility

This reference applies to:

Release Managed Package Version API Version
B2B Commerce for Visualforce Winter ’21 4.13 12
B2B Commerce for Visualforce Spring ’20 4.12 11
B2B Commerce for Visualforce Summer ’19 4.11 10
B2B Commerce for Visualforce Spring ’19 4.10 9
B2B Commerce for Visualforce Summer ’18 4.9 8

Properties

This class defines the following Apex global properties. For more information about Apex properties and accessors, see Apex Properties.

address1 {get; set;}
String that specifies the first line of the street address.
address2 {get; set;}
String that specifies the second line of the street address.
address3 {get; set;}
String that specifies the third line of the street address.
addrReadOnly {get; set;}
Boolean that specifies whether the address is read-only.

If this value is null on the source ccrz__E_ContactAddr__c record, the bean sets this value to false.

Note

city {get; set;}
String that specifies the city for the address.
companyName {get; set;}
String that specifies the name of a company associated with this address.
country {get; set;}
String that specifies the name of the country or territory for the address.
countryCode {get; set;}
String that specifies an ISO 3166-1 code for the country or territory.
dayTime {get; set;}
String that specifies the primary phone number for the address.
email {get; set;}
String that specifies an email associated with the address.
firstName {get; set;}
String that specifies the first name of the person associated with the address.
homePhone {get; set;}
String that specifies an alternative phone number for the address.
lastName {get; set;}
String that specifies the last name of the person associated with the address.
mailStop {get; set;}
Unused. This property doesn't control any functionality by default.
middleName {get; set;}
String that specifies the middle name of the person associated with the address.
partnerId {get; set;}
Unused. This property doesn't control any functionality by default.
postalCode {get; set;}
String that specifies the postal code for the address.
sfdcName {get; set;}
String that specifies a unique, automatically assigned ID for the record.
shippingComments {get; set;}
String that specifies optional shipping comments entered during checkout.
state {get; set;}
String that specifies the name of the state for an address that's located outside of the United States or Canada.
stateCode {get; set;}
String that specifies an ISO 3166-2 code for a US state or Canadian province.
sfid {get; set;}
ID of this ccrz.cc_bean_MockContactAddress instance.

Constructors

This class defines the following constructors:

ccrz.cc_bean_MockContactAddress
Default constructor that doesn't take any parameters and doesn't set any values. When you use this constructor, make sure that you set the individual fields on bean.
ccrz.cc_bean_MockContactAddress(ccrz__E_ContactAddr__c contactAddress)
Constructor that sets fields on the ccrz.cc_bean_MockContactAddress from the passed-in contact address record.