UNPKG

fastcomments-sdk

Version:

FastComments API Client - A SDK for interacting with the FastComments API

41 lines 1.47 kB
/** * fastcomments * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.0.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 { User } from './User'; import type { APIStatus } from './APIStatus'; /** * * @export * @interface CreateTenantUserResponse */ export interface CreateTenantUserResponse { /** * * @type {APIStatus} * @memberof CreateTenantUserResponse */ status: APIStatus; /** * * @type {User} * @memberof CreateTenantUserResponse */ tenantUser: User; } /** * Check if a given object implements the CreateTenantUserResponse interface. */ export declare function instanceOfCreateTenantUserResponse(value: object): value is CreateTenantUserResponse; export declare function CreateTenantUserResponseFromJSON(json: any): CreateTenantUserResponse; export declare function CreateTenantUserResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateTenantUserResponse; export declare function CreateTenantUserResponseToJSON(json: any): CreateTenantUserResponse; export declare function CreateTenantUserResponseToJSONTyped(value?: CreateTenantUserResponse | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=CreateTenantUserResponse.d.ts.map