@simplyhomes/sos-client
Version:
Client SDK for SimplyHomes SOS API
26 lines (25 loc) • 716 B
TypeScript
export declare class SDK_CreateSource_Body_Dto_Property_Unit {
bedrooms: number;
bathrooms: number;
}
export declare class SDK_CreateSource_Body_Property {
contacts?: SDK_CreateSource_Body_Contact[];
contactIds?: number[];
address: string;
price: number;
units: SDK_CreateSource_Body_Dto_Property_Unit[];
}
export declare class SDK_CreateSource_Body_Contact {
name: string;
email: string;
phone: string;
}
export declare class SDK_CreateSource_Body_Dto {
type?: string;
contactIds?: number[];
contacts?: SDK_CreateSource_Body_Contact[];
properties: SDK_CreateSource_Body_Property[];
}
export declare class SDK_CreateSource_Response_Dto {
pids: string[];
}