UNPKG

@simplyhomes/sos-sdk

Version:

TypeScript SDK for Simply Homes SoS API v4

45 lines 1.51 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. */ /** * * @export * @interface V4OptionsCreateOptionBodyDto */ export interface V4OptionsCreateOptionBodyDto { /** * The label of the option * @type {string} * @memberof V4OptionsCreateOptionBodyDto */ label?: string; /** * * @type {string} * @memberof V4OptionsCreateOptionBodyDto */ color?: string; /** * The value of option * @type {string} * @memberof V4OptionsCreateOptionBodyDto */ moid: string; } /** * Check if a given object implements the V4OptionsCreateOptionBodyDto interface. */ export declare function instanceOfV4OptionsCreateOptionBodyDto(value: object): value is V4OptionsCreateOptionBodyDto; export declare function V4OptionsCreateOptionBodyDtoFromJSON(json: any): V4OptionsCreateOptionBodyDto; export declare function V4OptionsCreateOptionBodyDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): V4OptionsCreateOptionBodyDto; export declare function V4OptionsCreateOptionBodyDtoToJSON(json: any): V4OptionsCreateOptionBodyDto; export declare function V4OptionsCreateOptionBodyDtoToJSONTyped(value?: V4OptionsCreateOptionBodyDto | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=V4OptionsCreateOptionBodyDto.d.ts.map