xero-node
Version:
Xero NodeJS OAuth 2.0 client for xero-node
60 lines (59 loc) • 1.1 kB
TypeScript
export declare class Address {
/**
* define the type of address
*/
'addressType'?: Address.AddressTypeEnum;
/**
* max length = 500
*/
'addressLine1'?: string;
/**
* max length = 500
*/
'addressLine2'?: string;
/**
* max length = 500
*/
'addressLine3'?: string;
/**
* max length = 500
*/
'addressLine4'?: string;
/**
* max length = 255
*/
'city'?: string;
/**
* max length = 255
*/
'region'?: string;
/**
* max length = 50
*/
'postalCode'?: string;
/**
* max length = 50, [A-Z], [a-z] only
*/
'country'?: string;
/**
* max length = 255
*/
'attentionTo'?: string;
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}
export declare namespace Address {
enum AddressTypeEnum {
POBOX,
STREET
}
}