/** * Company Address Information * @export * @class CompanyAddress */ export declare class CompanyAddress { /** * @type {string} * @memberof CompanyAddress */ line: string; /** * @type {string} * @memberof CompanyAddress */ city?: string | undefined; /** * @type {string} * @memberof CompanyAddress */ region?: string | undefined; /** * @type {string} * @memberof CompanyAddress */ country: string; /** * @type {string} * @memberof CompanyAddress */ postalCode: string; }