@simplyhomes/sos-sdk
Version:
TypeScript SDK for Simply Homes SoS API v4
63 lines • 1.77 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 SoSContactEntityBase
*/
export interface SoSContactEntityBase {
/**
* Contact ID
* @type {number}
* @memberof SoSContactEntityBase
*/
cid: number;
/**
* Contact email address
* @type {string}
* @memberof SoSContactEntityBase
*/
email: string;
/**
* Primary phone number
* @type {string}
* @memberof SoSContactEntityBase
*/
phonePrimary?: string;
/**
* Secondary phone number
* @type {string}
* @memberof SoSContactEntityBase
*/
phoneSecondary?: string;
/**
* Contact name
* @type {string}
* @memberof SoSContactEntityBase
*/
name?: string;
/**
* Organization ID
* @type {number}
* @memberof SoSContactEntityBase
*/
organizationId?: number;
}
/**
* Check if a given object implements the SoSContactEntityBase interface.
*/
export declare function instanceOfSoSContactEntityBase(value: object): value is SoSContactEntityBase;
export declare function SoSContactEntityBaseFromJSON(json: any): SoSContactEntityBase;
export declare function SoSContactEntityBaseFromJSONTyped(json: any, ignoreDiscriminator: boolean): SoSContactEntityBase;
export declare function SoSContactEntityBaseToJSON(json: any): SoSContactEntityBase;
export declare function SoSContactEntityBaseToJSONTyped(value?: SoSContactEntityBase | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=SoSContactEntityBase.d.ts.map