@simplyhomes/sos-sdk
Version:
TypeScript SDK for Simply Homes SoS API v4
87 lines • 2.46 kB
TypeScript
/**
* 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 SoSMlsListingEntityDataAddress
*/
export interface SoSMlsListingEntityDataAddress {
/**
* City name
* @type {string}
* @memberof SoSMlsListingEntityDataAddress
*/
city: string;
/**
* Full address
* @type {string}
* @memberof SoSMlsListingEntityDataAddress
*/
full: string;
/**
* Unit number
* @type {string}
* @memberof SoSMlsListingEntityDataAddress
*/
unit?: string;
/**
* State abbreviation
* @type {string}
* @memberof SoSMlsListingEntityDataAddress
*/
state: string;
/**
* Country name
* @type {string}
* @memberof SoSMlsListingEntityDataAddress
*/
country: string;
/**
* Postal code
* @type {string}
* @memberof SoSMlsListingEntityDataAddress
*/
postalCode: string;
/**
* Street name
* @type {string}
* @memberof SoSMlsListingEntityDataAddress
*/
streetName: string;
/**
* Cross street
* @type {string}
* @memberof SoSMlsListingEntityDataAddress
*/
crossStreet?: string;
/**
* Street number
* @type {number}
* @memberof SoSMlsListingEntityDataAddress
*/
streetNumber: number;
/**
* Street number as text
* @type {string}
* @memberof SoSMlsListingEntityDataAddress
*/
streetNumberText: string;
}
/**
* Check if a given object implements the SoSMlsListingEntityDataAddress interface.
*/
export declare function instanceOfSoSMlsListingEntityDataAddress(value: object): value is SoSMlsListingEntityDataAddress;
export declare function SoSMlsListingEntityDataAddressFromJSON(json: any): SoSMlsListingEntityDataAddress;
export declare function SoSMlsListingEntityDataAddressFromJSONTyped(json: any, ignoreDiscriminator: boolean): SoSMlsListingEntityDataAddress;
export declare function SoSMlsListingEntityDataAddressToJSON(json: any): SoSMlsListingEntityDataAddress;
export declare function SoSMlsListingEntityDataAddressToJSONTyped(value?: SoSMlsListingEntityDataAddress | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=SoSMlsListingEntityDataAddress.d.ts.map