@simplyhomes/sos-sdk
Version:
TypeScript SDK for Simply Homes SoS API v4
40 lines • 1.58 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 { SoSOptionEntityBase } from './SoSOptionEntityBase';
/**
*
* @export
* @interface V4OptionsGetOptionsResponseDto
*/
export interface V4OptionsGetOptionsResponseDto {
/**
* List of options retrieved from the database
* @type {Array<SoSOptionEntityBase>}
* @memberof V4OptionsGetOptionsResponseDto
*/
objects: Array<SoSOptionEntityBase>;
/**
* Total count of options matching the query
* @type {number}
* @memberof V4OptionsGetOptionsResponseDto
*/
count: number;
}
/**
* Check if a given object implements the V4OptionsGetOptionsResponseDto interface.
*/
export declare function instanceOfV4OptionsGetOptionsResponseDto(value: object): value is V4OptionsGetOptionsResponseDto;
export declare function V4OptionsGetOptionsResponseDtoFromJSON(json: any): V4OptionsGetOptionsResponseDto;
export declare function V4OptionsGetOptionsResponseDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): V4OptionsGetOptionsResponseDto;
export declare function V4OptionsGetOptionsResponseDtoToJSON(json: any): V4OptionsGetOptionsResponseDto;
export declare function V4OptionsGetOptionsResponseDtoToJSONTyped(value?: V4OptionsGetOptionsResponseDto | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=V4OptionsGetOptionsResponseDto.d.ts.map