UNPKG

@simplyhomes/sos-sdk

Version:

TypeScript SDK for Simply Homes SoS API v4

40 lines 1.61 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. */ import type { SoSContactEntityBase } from './SoSContactEntityBase'; /** * * @export * @interface V4ContactsGetContactResponseDto */ export interface V4ContactsGetContactResponseDto { /** * List of contacts retrieved from the database * @type {Array<SoSContactEntityBase>} * @memberof V4ContactsGetContactResponseDto */ objects: Array<SoSContactEntityBase>; /** * Total count of contacts matching the query * @type {number} * @memberof V4ContactsGetContactResponseDto */ count: number; } /** * Check if a given object implements the V4ContactsGetContactResponseDto interface. */ export declare function instanceOfV4ContactsGetContactResponseDto(value: object): value is V4ContactsGetContactResponseDto; export declare function V4ContactsGetContactResponseDtoFromJSON(json: any): V4ContactsGetContactResponseDto; export declare function V4ContactsGetContactResponseDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): V4ContactsGetContactResponseDto; export declare function V4ContactsGetContactResponseDtoToJSON(json: any): V4ContactsGetContactResponseDto; export declare function V4ContactsGetContactResponseDtoToJSONTyped(value?: V4ContactsGetContactResponseDto | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=V4ContactsGetContactResponseDto.d.ts.map