UNPKG

@simplyhomes/sos-sdk

Version:

TypeScript SDK for Simply Homes SoS API v4

40 lines 2.14 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 { SoSRelContactSourceEntityBase } from './SoSRelContactSourceEntityBase'; /** * * @export * @interface V4ContactSourceRelationsGetRelContactSourcesInViewResponseDto */ export interface V4ContactSourceRelationsGetRelContactSourcesInViewResponseDto { /** * List of rel-contact-sources retrieved from the database * @type {Array<SoSRelContactSourceEntityBase>} * @memberof V4ContactSourceRelationsGetRelContactSourcesInViewResponseDto */ objects: Array<SoSRelContactSourceEntityBase>; /** * Total count of rel-contact-sources matching the query * @type {number} * @memberof V4ContactSourceRelationsGetRelContactSourcesInViewResponseDto */ count: number; } /** * Check if a given object implements the V4ContactSourceRelationsGetRelContactSourcesInViewResponseDto interface. */ export declare function instanceOfV4ContactSourceRelationsGetRelContactSourcesInViewResponseDto(value: object): value is V4ContactSourceRelationsGetRelContactSourcesInViewResponseDto; export declare function V4ContactSourceRelationsGetRelContactSourcesInViewResponseDtoFromJSON(json: any): V4ContactSourceRelationsGetRelContactSourcesInViewResponseDto; export declare function V4ContactSourceRelationsGetRelContactSourcesInViewResponseDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): V4ContactSourceRelationsGetRelContactSourcesInViewResponseDto; export declare function V4ContactSourceRelationsGetRelContactSourcesInViewResponseDtoToJSON(json: any): V4ContactSourceRelationsGetRelContactSourcesInViewResponseDto; export declare function V4ContactSourceRelationsGetRelContactSourcesInViewResponseDtoToJSONTyped(value?: V4ContactSourceRelationsGetRelContactSourcesInViewResponseDto | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=V4ContactSourceRelationsGetRelContactSourcesInViewResponseDto.d.ts.map