xero-node
Version:
Xero NodeJS OAuth 2.0 client for xero-node
38 lines (37 loc) • 793 B
TypeScript
export declare class Address {
/**
* Address line 1 for employee home address
*/
'addressLine1': string;
/**
* Address line 2 for employee home address
*/
'addressLine2'?: string;
/**
* Suburb for employee home address
*/
'city': string;
/**
* Suburb for employee home address
*/
'suburb'?: string;
/**
* PostCode for employee home address
*/
'postCode': string;
/**
* Country of HomeAddress
*/
'countryName'?: string;
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}