@simplyhomes/sos-sdk
Version:
TypeScript SDK for Simply Homes SoS API v4
40 lines • 2.03 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 { SoSRelContactSourceEntityBase } from './SoSRelContactSourceEntityBase';
/**
*
* @export
* @interface V4ContactSourceRelationsGetRelContactSourceResponseDto
*/
export interface V4ContactSourceRelationsGetRelContactSourceResponseDto {
/**
* List of rel-contact-sources retrieved from the database
* @type {Array<SoSRelContactSourceEntityBase>}
* @memberof V4ContactSourceRelationsGetRelContactSourceResponseDto
*/
objects: Array<SoSRelContactSourceEntityBase>;
/**
* Total count of rel-contact-sources matching the query
* @type {number}
* @memberof V4ContactSourceRelationsGetRelContactSourceResponseDto
*/
count: number;
}
/**
* Check if a given object implements the V4ContactSourceRelationsGetRelContactSourceResponseDto interface.
*/
export declare function instanceOfV4ContactSourceRelationsGetRelContactSourceResponseDto(value: object): value is V4ContactSourceRelationsGetRelContactSourceResponseDto;
export declare function V4ContactSourceRelationsGetRelContactSourceResponseDtoFromJSON(json: any): V4ContactSourceRelationsGetRelContactSourceResponseDto;
export declare function V4ContactSourceRelationsGetRelContactSourceResponseDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): V4ContactSourceRelationsGetRelContactSourceResponseDto;
export declare function V4ContactSourceRelationsGetRelContactSourceResponseDtoToJSON(json: any): V4ContactSourceRelationsGetRelContactSourceResponseDto;
export declare function V4ContactSourceRelationsGetRelContactSourceResponseDtoToJSONTyped(value?: V4ContactSourceRelationsGetRelContactSourceResponseDto | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=V4ContactSourceRelationsGetRelContactSourceResponseDto.d.ts.map