UNPKG

@simplyhomes/sos-sdk

Version:

TypeScript SDK for Simply Homes SoS API v4

39 lines 1.5 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 V4CountiesUpdateCountyResponseDto */ export interface V4CountiesUpdateCountyResponseDto { /** * Status of the update operation * @type {string} * @memberof V4CountiesUpdateCountyResponseDto */ message?: string; /** * The ID of the updated county * @type {string} * @memberof V4CountiesUpdateCountyResponseDto */ countyId: string; } /** * Check if a given object implements the V4CountiesUpdateCountyResponseDto interface. */ export declare function instanceOfV4CountiesUpdateCountyResponseDto(value: object): value is V4CountiesUpdateCountyResponseDto; export declare function V4CountiesUpdateCountyResponseDtoFromJSON(json: any): V4CountiesUpdateCountyResponseDto; export declare function V4CountiesUpdateCountyResponseDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): V4CountiesUpdateCountyResponseDto; export declare function V4CountiesUpdateCountyResponseDtoToJSON(json: any): V4CountiesUpdateCountyResponseDto; export declare function V4CountiesUpdateCountyResponseDtoToJSONTyped(value?: V4CountiesUpdateCountyResponseDto | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=V4CountiesUpdateCountyResponseDto.d.ts.map