UNPKG

@simplyhomes/sos-sdk

Version:

TypeScript SDK for Simply Homes SoS API v4

33 lines 1.37 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 V4ContactsCreateContactResponseDto */ export interface V4ContactsCreateContactResponseDto { /** * The ID of the created contact * @type {number} * @memberof V4ContactsCreateContactResponseDto */ contactId: number; } /** * Check if a given object implements the V4ContactsCreateContactResponseDto interface. */ export declare function instanceOfV4ContactsCreateContactResponseDto(value: object): value is V4ContactsCreateContactResponseDto; export declare function V4ContactsCreateContactResponseDtoFromJSON(json: any): V4ContactsCreateContactResponseDto; export declare function V4ContactsCreateContactResponseDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): V4ContactsCreateContactResponseDto; export declare function V4ContactsCreateContactResponseDtoToJSON(json: any): V4ContactsCreateContactResponseDto; export declare function V4ContactsCreateContactResponseDtoToJSONTyped(value?: V4ContactsCreateContactResponseDto | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=V4ContactsCreateContactResponseDto.d.ts.map