UNPKG

@simplyhomes/sos-sdk

Version:

TypeScript SDK for Simply Homes SoS API v4

87 lines 2.9 kB
/** * API v4 * Swagger documentation for API v4 * * The version of the OpenAPI document: 4.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface SoSPropertyEntityAttomAllEventDetailDataAddress */ export interface SoSPropertyEntityAttomAllEventDetailDataAddress { /** * Address line 1 * @type {string} * @memberof SoSPropertyEntityAttomAllEventDetailDataAddress */ line1: string; /** * Address line 2 * @type {string} * @memberof SoSPropertyEntityAttomAllEventDetailDataAddress */ line2: string; /** * Country * @type {string} * @memberof SoSPropertyEntityAttomAllEventDetailDataAddress */ country: string; /** * Full address in one line * @type {string} * @memberof SoSPropertyEntityAttomAllEventDetailDataAddress */ oneLine: string; /** * Primary postal code * @type {string} * @memberof SoSPropertyEntityAttomAllEventDetailDataAddress */ postal1: string; /** * Secondary postal code * @type {string} * @memberof SoSPropertyEntityAttomAllEventDetailDataAddress */ postal2: string; /** * Tertiary postal code * @type {string} * @memberof SoSPropertyEntityAttomAllEventDetailDataAddress */ postal3: string; /** * Locality/city * @type {string} * @memberof SoSPropertyEntityAttomAllEventDetailDataAddress */ locality: string; /** * Address match code * @type {string} * @memberof SoSPropertyEntityAttomAllEventDetailDataAddress */ matchCode: string; /** * Country subdivision/state * @type {string} * @memberof SoSPropertyEntityAttomAllEventDetailDataAddress */ countrySubd: string; } /** * Check if a given object implements the SoSPropertyEntityAttomAllEventDetailDataAddress interface. */ export declare function instanceOfSoSPropertyEntityAttomAllEventDetailDataAddress(value: object): value is SoSPropertyEntityAttomAllEventDetailDataAddress; export declare function SoSPropertyEntityAttomAllEventDetailDataAddressFromJSON(json: any): SoSPropertyEntityAttomAllEventDetailDataAddress; export declare function SoSPropertyEntityAttomAllEventDetailDataAddressFromJSONTyped(json: any, ignoreDiscriminator: boolean): SoSPropertyEntityAttomAllEventDetailDataAddress; export declare function SoSPropertyEntityAttomAllEventDetailDataAddressToJSON(json: any): SoSPropertyEntityAttomAllEventDetailDataAddress; export declare function SoSPropertyEntityAttomAllEventDetailDataAddressToJSONTyped(value?: SoSPropertyEntityAttomAllEventDetailDataAddress | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=SoSPropertyEntityAttomAllEventDetailDataAddress.d.ts.map