@simplyhomes/sos-sdk
Version:
TypeScript SDK for Simply Homes SoS API v4
40 lines • 1.62 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.
*/
import type { SoSContactEntityBase } from './SoSContactEntityBase';
/**
*
* @export
* @interface V4ContactsGetContactsResponseDto
*/
export interface V4ContactsGetContactsResponseDto {
/**
* List of contacts retrieved from the database
* @type {Array<SoSContactEntityBase>}
* @memberof V4ContactsGetContactsResponseDto
*/
objects: Array<SoSContactEntityBase>;
/**
* Total count of contacts matching the query
* @type {number}
* @memberof V4ContactsGetContactsResponseDto
*/
count: number;
}
/**
* Check if a given object implements the V4ContactsGetContactsResponseDto interface.
*/
export declare function instanceOfV4ContactsGetContactsResponseDto(value: object): value is V4ContactsGetContactsResponseDto;
export declare function V4ContactsGetContactsResponseDtoFromJSON(json: any): V4ContactsGetContactsResponseDto;
export declare function V4ContactsGetContactsResponseDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): V4ContactsGetContactsResponseDto;
export declare function V4ContactsGetContactsResponseDtoToJSON(json: any): V4ContactsGetContactsResponseDto;
export declare function V4ContactsGetContactsResponseDtoToJSONTyped(value?: V4ContactsGetContactsResponseDto | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=V4ContactsGetContactsResponseDto.d.ts.map