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