@simplyhomes/sos-sdk
Version:
TypeScript SDK for Simply Homes SoS API v4
45 lines • 1.49 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 SoSRelContactSourceEntityBase
*/
export interface SoSRelContactSourceEntityBase {
/**
*
* @type {number}
* @memberof SoSRelContactSourceEntityBase
*/
contactId: number;
/**
*
* @type {number}
* @memberof SoSRelContactSourceEntityBase
*/
sourceId: number;
/**
*
* @type {string}
* @memberof SoSRelContactSourceEntityBase
*/
type?: string;
}
/**
* Check if a given object implements the SoSRelContactSourceEntityBase interface.
*/
export declare function instanceOfSoSRelContactSourceEntityBase(value: object): value is SoSRelContactSourceEntityBase;
export declare function SoSRelContactSourceEntityBaseFromJSON(json: any): SoSRelContactSourceEntityBase;
export declare function SoSRelContactSourceEntityBaseFromJSONTyped(json: any, ignoreDiscriminator: boolean): SoSRelContactSourceEntityBase;
export declare function SoSRelContactSourceEntityBaseToJSON(json: any): SoSRelContactSourceEntityBase;
export declare function SoSRelContactSourceEntityBaseToJSONTyped(value?: SoSRelContactSourceEntityBase | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=SoSRelContactSourceEntityBase.d.ts.map