UNPKG

@simplyhomes/sos-sdk

Version:

TypeScript SDK for Simply Homes SoS API v4

69 lines 2.1 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 SoSMlsListingEntityDataMls */ export interface SoSMlsListingEntityDataMls { /** * MLS area designation * @type {string} * @memberof SoSMlsListingEntityDataMls */ area: string; /** * Current listing status * @type {string} * @memberof SoSMlsListingEntityDataMls */ status: string; /** * Minor area designation * @type {string} * @memberof SoSMlsListingEntityDataMls */ areaMinor: string; /** * Human-readable status text * @type {string} * @memberof SoSMlsListingEntityDataMls */ statusText: string; /** * Number of days on market * @type {number} * @memberof SoSMlsListingEntityDataMls */ daysOnMarket?: number; /** * Originating MLS system name * @type {string} * @memberof SoSMlsListingEntityDataMls */ originatingSystemName: string; /** * Original entry timestamp in ISO format * @type {string} * @memberof SoSMlsListingEntityDataMls */ originalEntryTimestamp: string; } /** * Check if a given object implements the SoSMlsListingEntityDataMls interface. */ export declare function instanceOfSoSMlsListingEntityDataMls(value: object): value is SoSMlsListingEntityDataMls; export declare function SoSMlsListingEntityDataMlsFromJSON(json: any): SoSMlsListingEntityDataMls; export declare function SoSMlsListingEntityDataMlsFromJSONTyped(json: any, ignoreDiscriminator: boolean): SoSMlsListingEntityDataMls; export declare function SoSMlsListingEntityDataMlsToJSON(json: any): SoSMlsListingEntityDataMls; export declare function SoSMlsListingEntityDataMlsToJSONTyped(value?: SoSMlsListingEntityDataMls | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=SoSMlsListingEntityDataMls.d.ts.map