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