Show / Hide Table of Contents

Class NSAddressSyncData

Carrier object for AddressSyncData.

Syntax

Constructors

NSAddressSyncData()

Initializes a new instance of the NSAddressSyncData class.

Declaration
NSAddressSyncData

Methods

GetAddress1()

Carrier object for AddressSyncData.

Declaration
String GetAddress1()
Returns
Type Description
String
Examples
NSAddressSyncData thing;
String address1 = thing.GetAddress1();

GetAddress2()

Carrier object for AddressSyncData.

Declaration
String GetAddress2()
Returns
Type Description
String
Examples
NSAddressSyncData thing;
String address2 = thing.GetAddress2();

GetAddress3()

Carrier object for AddressSyncData.

Declaration
String GetAddress3()
Returns
Type Description
String
Examples
NSAddressSyncData thing;
String address3 = thing.GetAddress3();

GetAddressId()

Carrier object for AddressSyncData.

Declaration
Integer GetAddressId()
Returns
Type Description
Integer

Primary key.

Examples
NSAddressSyncData thing;
Integer addressId = thing.GetAddressId();

GetAddressType()

Carrier object for AddressSyncData.

Declaration
Integer GetAddressType()
Returns
Type Description
Integer

See AddressType

Examples
NSAddressSyncData thing;
Integer addressType = thing.GetAddressType();

GetCity()

Carrier object for AddressSyncData.

Declaration
String GetCity()
Returns
Type Description
String
Examples
NSAddressSyncData thing;
String city = thing.GetCity();

GetCounty()

Carrier object for AddressSyncData.

Declaration
String GetCounty()
Returns
Type Description
String
Examples
NSAddressSyncData thing;
String county = thing.GetCounty();

GetFormattedAddress()

Carrier object for AddressSyncData.

Declaration
String GetFormattedAddress()
Returns
Type Description
String
Examples
NSAddressSyncData thing;
String formattedAddress = thing.GetFormattedAddress();

GetLatitude()

Carrier object for AddressSyncData.

Declaration
Float GetLatitude()
Returns
Type Description
Float
Examples
NSAddressSyncData thing;
Float latitude = thing.GetLatitude();

GetLongitude()

Carrier object for AddressSyncData.

Declaration
Float GetLongitude()
Returns
Type Description
Float
Examples
NSAddressSyncData thing;
Float longitude = thing.GetLongitude();

GetState()

Carrier object for AddressSyncData.

Declaration
String GetState()
Returns
Type Description
String
Examples
NSAddressSyncData thing;
String state = thing.GetState();

GetZipCode()

Carrier object for AddressSyncData.

Declaration
String GetZipCode()
Returns
Type Description
String
Examples
NSAddressSyncData thing;
String zipCode = thing.GetZipCode();

SetAddress1(String)

Carrier object for AddressSyncData.

Declaration
Void SetAddress1(String address1)
Parameters
Type Name Description
String address1
Returns
Type Description
Void
Examples
NSAddressSyncData thing;
String address1;
thing.SetAddress1(address1);

SetAddress2(String)

Carrier object for AddressSyncData.

Declaration
Void SetAddress2(String address2)
Parameters
Type Name Description
String address2
Returns
Type Description
Void
Examples
NSAddressSyncData thing;
String address2;
thing.SetAddress2(address2);

SetAddress3(String)

Carrier object for AddressSyncData.

Declaration
Void SetAddress3(String address3)
Parameters
Type Name Description
String address3
Returns
Type Description
Void
Examples
NSAddressSyncData thing;
String address3;
thing.SetAddress3(address3);

SetAddressId(Integer)

Primary key

Declaration
Void SetAddressId(Integer addressId)
Parameters
Type Name Description
Integer addressId
Returns
Type Description
Void
Examples
NSAddressSyncData thing;
Integer addressId;
thing.SetAddressId(addressId);

SetAddressType(Integer)

Carrier object for AddressSyncData.

Declaration
Void SetAddressType(Integer addressType)
Parameters
Type Name Description
Integer addressType

See AddressType

Returns
Type Description
Void
Examples
NSAddressSyncData thing;
Integer addressType;
thing.SetAddressType(addressType);

SetCity(String)

Carrier object for AddressSyncData.

Declaration
Void SetCity(String city)
Parameters
Type Name Description
String city
Returns
Type Description
Void
Examples
NSAddressSyncData thing;
String city;
thing.SetCity(city);

SetCounty(String)

Carrier object for AddressSyncData.

Declaration
Void SetCounty(String county)
Parameters
Type Name Description
String county
Returns
Type Description
Void
Examples
NSAddressSyncData thing;
String county;
thing.SetCounty(county);

SetFormattedAddress(String)

Carrier object for AddressSyncData.

Declaration
Void SetFormattedAddress(String formattedAddress)
Parameters
Type Name Description
String formattedAddress
Returns
Type Description
Void
Examples
NSAddressSyncData thing;
String formattedAddress;
thing.SetFormattedAddress(formattedAddress);

SetLatitude(Float)

Carrier object for AddressSyncData.

Declaration
Void SetLatitude(Float latitude)
Parameters
Type Name Description
Float latitude
Returns
Type Description
Void
Examples
NSAddressSyncData thing;
Float latitude;
thing.SetLatitude(latitude);

SetLongitude(Float)

Carrier object for AddressSyncData.

Declaration
Void SetLongitude(Float longitude)
Parameters
Type Name Description
Float longitude
Returns
Type Description
Void
Examples
NSAddressSyncData thing;
Float longitude;
thing.SetLongitude(longitude);

SetState(String)

Carrier object for AddressSyncData.

Declaration
Void SetState(String state)
Parameters
Type Name Description
String state
Returns
Type Description
Void
Examples
NSAddressSyncData thing;
String state;
thing.SetState(state);

SetZipCode(String)

Carrier object for AddressSyncData.

Declaration
Void SetZipCode(String zipCode)
Parameters
Type Name Description
String zipCode
Returns
Type Description
Void
Examples
NSAddressSyncData thing;
String zipCode;
thing.SetZipCode(zipCode);
In This Article
© SuperOffice. All rights reserved.
SuperOffice |  Community |  Release Notes |  Privacy |  Site feedback |  Search Docs |  About Docs |  Contribute |  Back to top