xero-node
Version:
Xero NodeJS OAuth 2.0 client for xero-node
72 lines (71 loc) • 1.49 kB
TypeScript
/**
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: 2.0.0
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
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,
DELIVERY
}
}