Class NSAddressSyncData
Carrier object for AddressSyncData.
Constructors
NSAddressSyncData()
Initializes a new instance of the NSAddressSyncData class.
Declaration
NSAddressSyncData Methods
GetAddress1()
Declaration
String GetAddress1() Examples
NSAddressSyncData thing;
String address1 = thing.GetAddress1();
Returns
| Type | Description |
| String |
GetAddress2()
Declaration
String GetAddress2() Examples
NSAddressSyncData thing;
String address2 = thing.GetAddress2();
Returns
| Type | Description |
| String |
GetAddress3()
Declaration
String GetAddress3() Examples
NSAddressSyncData thing;
String address3 = thing.GetAddress3();
Returns
| Type | Description |
| String |
GetAddressId()
Declaration
Integer GetAddressId() Examples
NSAddressSyncData thing;
Integer addressId = thing.GetAddressId();
Returns
| Type | Description |
| Integer | Primary key. |
GetAddressType()
Declaration
Integer GetAddressType() Examples
NSAddressSyncData thing;
Integer addressType = thing.GetAddressType();
Returns
| Type | Description |
| Integer | See <xref href="CRMScript.NetServer.AddressType" data-throw-if-not-resolved="false"></xref> |
GetCity()
Declaration
String GetCity() Examples
NSAddressSyncData thing;
String city = thing.GetCity();
Returns
| Type | Description |
| String |
GetCounty()
Declaration
String GetCounty() Examples
NSAddressSyncData thing;
String county = thing.GetCounty();
Returns
| Type | Description |
| String |
GetFormattedAddress()
Declaration
String GetFormattedAddress() Examples
NSAddressSyncData thing;
String formattedAddress = thing.GetFormattedAddress();
Returns
| Type | Description |
| String |
GetLatitude()
Declaration
Float GetLatitude() Examples
NSAddressSyncData thing;
Float latitude = thing.GetLatitude();
Returns
| Type | Description |
| Float |
GetLongitude()
Declaration
Float GetLongitude() Examples
NSAddressSyncData thing;
Float longitude = thing.GetLongitude();
Returns
| Type | Description |
| Float |
GetState()
Declaration
String GetState() Examples
NSAddressSyncData thing;
String state = thing.GetState();
Returns
| Type | Description |
| String |
GetZipCode()
Declaration
String GetZipCode() Examples
NSAddressSyncData thing;
String zipCode = thing.GetZipCode();
Returns
| Type | Description |
| String |
SetAddress1(String)
Declaration
Void SetAddress1(String address1) Examples
NSAddressSyncData thing;
String address1;
thing.SetAddress1(address1);
Parameters
| Type | Name | Description |
| String | address1 |
Returns
| Type | Description |
| Void |
SetAddress2(String)
Declaration
Void SetAddress2(String address2) Examples
NSAddressSyncData thing;
String address2;
thing.SetAddress2(address2);
Parameters
| Type | Name | Description |
| String | address2 |
Returns
| Type | Description |
| Void |
SetAddress3(String)
Declaration
Void SetAddress3(String address3) Examples
NSAddressSyncData thing;
String address3;
thing.SetAddress3(address3);
Parameters
| Type | Name | Description |
| String | address3 |
Returns
| Type | Description |
| Void |
SetAddressId(Integer)
Primary key
Declaration
Void SetAddressId(Integer addressId) Examples
NSAddressSyncData thing;
Integer addressId;
thing.SetAddressId(addressId);
Parameters
| Type | Name | Description |
| Integer | addressId |
Returns
| Type | Description |
| Void |
SetAddressType(Integer)
Declaration
Void SetAddressType(Integer addressType) Examples
NSAddressSyncData thing;
Integer addressType;
thing.SetAddressType(addressType);
Parameters
| Type | Name | Description |
| Integer | addressType | See <xref href="CRMScript.NetServer.AddressType" data-throw-if-not-resolved="false"></xref> |
Returns
| Type | Description |
| Void |
SetCity(String)
Declaration
Void SetCity(String city) Examples
NSAddressSyncData thing;
String city;
thing.SetCity(city);
Parameters
| Type | Name | Description |
| String | city |
Returns
| Type | Description |
| Void |
SetCounty(String)
Declaration
Void SetCounty(String county) Examples
NSAddressSyncData thing;
String county;
thing.SetCounty(county);
Parameters
| Type | Name | Description |
| String | county |
Returns
| Type | Description |
| Void |
SetFormattedAddress(String)
Declaration
Void SetFormattedAddress(String formattedAddress) Examples
NSAddressSyncData thing;
String formattedAddress;
thing.SetFormattedAddress(formattedAddress);
Parameters
| Type | Name | Description |
| String | formattedAddress |
Returns
| Type | Description |
| Void |
SetLatitude(Float)
Declaration
Void SetLatitude(Float latitude) Examples
NSAddressSyncData thing;
Float latitude;
thing.SetLatitude(latitude);
Parameters
| Type | Name | Description |
| Float | latitude |
Returns
| Type | Description |
| Void |
SetLongitude(Float)
Declaration
Void SetLongitude(Float longitude) Examples
NSAddressSyncData thing;
Float longitude;
thing.SetLongitude(longitude);
Parameters
| Type | Name | Description |
| Float | longitude |
Returns
| Type | Description |
| Void |