@simplyhomes/sos-sdk
Version:
TypeScript SDK for Simply Homes SoS API v4
45 lines • 1.55 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 SoSMlsListingEntityDataContact
*/
export interface SoSMlsListingEntityDataContact {
/**
* Cell phone number
* @type {string}
* @memberof SoSMlsListingEntityDataContact
*/
cell?: string;
/**
* Email address
* @type {string}
* @memberof SoSMlsListingEntityDataContact
*/
email: string;
/**
* Office phone number
* @type {string}
* @memberof SoSMlsListingEntityDataContact
*/
office: string;
}
/**
* Check if a given object implements the SoSMlsListingEntityDataContact interface.
*/
export declare function instanceOfSoSMlsListingEntityDataContact(value: object): value is SoSMlsListingEntityDataContact;
export declare function SoSMlsListingEntityDataContactFromJSON(json: any): SoSMlsListingEntityDataContact;
export declare function SoSMlsListingEntityDataContactFromJSONTyped(json: any, ignoreDiscriminator: boolean): SoSMlsListingEntityDataContact;
export declare function SoSMlsListingEntityDataContactToJSON(json: any): SoSMlsListingEntityDataContact;
export declare function SoSMlsListingEntityDataContactToJSONTyped(value?: SoSMlsListingEntityDataContact | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=SoSMlsListingEntityDataContact.d.ts.map