UNPKG

@simplyhomes/sos-sdk

Version:

TypeScript SDK for Simply Homes SoS API v4

39 lines 1.42 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 V4UsersUpdateUserResponseDto */ export interface V4UsersUpdateUserResponseDto { /** * Status of the update operation * @type {string} * @memberof V4UsersUpdateUserResponseDto */ message?: string; /** * The ID of the updated user * @type {string} * @memberof V4UsersUpdateUserResponseDto */ userId: string; } /** * Check if a given object implements the V4UsersUpdateUserResponseDto interface. */ export declare function instanceOfV4UsersUpdateUserResponseDto(value: object): value is V4UsersUpdateUserResponseDto; export declare function V4UsersUpdateUserResponseDtoFromJSON(json: any): V4UsersUpdateUserResponseDto; export declare function V4UsersUpdateUserResponseDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): V4UsersUpdateUserResponseDto; export declare function V4UsersUpdateUserResponseDtoToJSON(json: any): V4UsersUpdateUserResponseDto; export declare function V4UsersUpdateUserResponseDtoToJSONTyped(value?: V4UsersUpdateUserResponseDto | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=V4UsersUpdateUserResponseDto.d.ts.map