UNPKG

xero-node

Version:

Xero NodeJS OAuth 2.0 client for xero-node

61 lines (60 loc) 1.16 kB
export declare class AddressForOrganisation { /** * define the type of address */ 'addressType'?: AddressForOrganisation.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 AddressForOrganisation { enum AddressTypeEnum { POBOX, STREET, DELIVERY } }