UNPKG

@simplyhomes/sos-sdk

Version:

TypeScript SDK for Simply Homes SoS API v4

40 lines 1.73 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 { SoSContractorEntityBase } from './SoSContractorEntityBase'; /** * * @export * @interface V4ContractorsGetContractorResponseDto */ export interface V4ContractorsGetContractorResponseDto { /** * List of contractors (should contain single contractor) * @type {Array<SoSContractorEntityBase>} * @memberof V4ContractorsGetContractorResponseDto */ objects: Array<SoSContractorEntityBase>; /** * Total count (should be 1 for single contractor) * @type {number} * @memberof V4ContractorsGetContractorResponseDto */ count: number; } /** * Check if a given object implements the V4ContractorsGetContractorResponseDto interface. */ export declare function instanceOfV4ContractorsGetContractorResponseDto(value: object): value is V4ContractorsGetContractorResponseDto; export declare function V4ContractorsGetContractorResponseDtoFromJSON(json: any): V4ContractorsGetContractorResponseDto; export declare function V4ContractorsGetContractorResponseDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): V4ContractorsGetContractorResponseDto; export declare function V4ContractorsGetContractorResponseDtoToJSON(json: any): V4ContractorsGetContractorResponseDto; export declare function V4ContractorsGetContractorResponseDtoToJSONTyped(value?: V4ContractorsGetContractorResponseDto | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=V4ContractorsGetContractorResponseDto.d.ts.map