@simplyhomes/sos-client
Version:
Client SDK for SimplyHomes SOS API
33 lines (32 loc) • 905 B
TypeScript
export declare enum SDK_SourceType {
HOMESMART = "HomeSmart/OneHome.com",
WHOLESALER = "Wholesaler",
DTS = "DTS",
MLS = "MLS",
AIRTABLE = "Airtable"
}
export declare class SDK_CreateProperty_Body_Dto_Property_Unit {
bedrooms: number;
bathrooms: number;
}
export declare class SDK_CreateProperty_Body_Property {
contacts?: SDK_CreateProperty_Body_Contact[];
contactIds?: number[];
address: string;
price: number;
units: SDK_CreateProperty_Body_Dto_Property_Unit[];
}
export declare class SDK_CreateProperty_Body_Contact {
name: string;
email: string;
phone: string;
}
export declare class SDK_CreateProperty_Body_Dto {
type?: string;
contactIds?: number[];
contacts?: SDK_CreateProperty_Body_Contact[];
property: SDK_CreateProperty_Body_Property;
}
export declare class SDK_CreateProperty_Response_Dto {
pid: string | null;
}