UNPKG

@simplyhomes/sos-sdk

Version:

TypeScript SDK for Simply Homes SoS API v4

40 lines 1.72 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 V4ContactsGetContactColumnsResponseDto */ export interface V4ContactsGetContactColumnsResponseDto { /** * List of contacts retrieved from the database * @type {Array<SoSContactEntityBase>} * @memberof V4ContactsGetContactColumnsResponseDto */ objects: Array<SoSContactEntityBase>; /** * Total count of contacts matching the query * @type {number} * @memberof V4ContactsGetContactColumnsResponseDto */ count: number; } /** * Check if a given object implements the V4ContactsGetContactColumnsResponseDto interface. */ export declare function instanceOfV4ContactsGetContactColumnsResponseDto(value: object): value is V4ContactsGetContactColumnsResponseDto; export declare function V4ContactsGetContactColumnsResponseDtoFromJSON(json: any): V4ContactsGetContactColumnsResponseDto; export declare function V4ContactsGetContactColumnsResponseDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): V4ContactsGetContactColumnsResponseDto; export declare function V4ContactsGetContactColumnsResponseDtoToJSON(json: any): V4ContactsGetContactColumnsResponseDto; export declare function V4ContactsGetContactColumnsResponseDtoToJSONTyped(value?: V4ContactsGetContactColumnsResponseDto | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=V4ContactsGetContactColumnsResponseDto.d.ts.map