UNPKG

@simplyhomes/sos-sdk

Version:

TypeScript SDK for Simply Homes SoS API v4

51 lines 1.44 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 SoSSourceEntityBase */ export interface SoSSourceEntityBase { /** * * @type {number} * @memberof SoSSourceEntityBase */ sid: number; /** * * @type {string} * @memberof SoSSourceEntityBase */ source: string; /** * * @type {Date} * @memberof SoSSourceEntityBase */ createdAt: string; /** * * @type {Array<string>} * @memberof SoSSourceEntityBase */ hubspotDealIds?: Array<string>; } /** * Check if a given object implements the SoSSourceEntityBase interface. */ export declare function instanceOfSoSSourceEntityBase(value: object): value is SoSSourceEntityBase; export declare function SoSSourceEntityBaseFromJSON(json: any): SoSSourceEntityBase; export declare function SoSSourceEntityBaseFromJSONTyped(json: any, ignoreDiscriminator: boolean): SoSSourceEntityBase; export declare function SoSSourceEntityBaseToJSON(json: any): SoSSourceEntityBase; export declare function SoSSourceEntityBaseToJSONTyped(value?: SoSSourceEntityBase | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=SoSSourceEntityBase.d.ts.map