UNPKG

@simplyhomes/sos-sdk

Version:

TypeScript SDK for Simply Homes SoS API v4

33 lines 1.28 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 V4UsersCreateUserResponseDto */ export interface V4UsersCreateUserResponseDto { /** * The ID of the newly created user * @type {string} * @memberof V4UsersCreateUserResponseDto */ userId: string; } /** * Check if a given object implements the V4UsersCreateUserResponseDto interface. */ export declare function instanceOfV4UsersCreateUserResponseDto(value: object): value is V4UsersCreateUserResponseDto; export declare function V4UsersCreateUserResponseDtoFromJSON(json: any): V4UsersCreateUserResponseDto; export declare function V4UsersCreateUserResponseDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): V4UsersCreateUserResponseDto; export declare function V4UsersCreateUserResponseDtoToJSON(json: any): V4UsersCreateUserResponseDto; export declare function V4UsersCreateUserResponseDtoToJSONTyped(value?: V4UsersCreateUserResponseDto | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=V4UsersCreateUserResponseDto.d.ts.map