UNPKG

fastcomments-sdk

Version:

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

41 lines 1.42 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 GetTenantUserResponse */ export interface GetTenantUserResponse { /** * * @type {APIStatus} * @memberof GetTenantUserResponse */ status: APIStatus; /** * * @type {User} * @memberof GetTenantUserResponse */ tenantUser: User; } /** * Check if a given object implements the GetTenantUserResponse interface. */ export declare function instanceOfGetTenantUserResponse(value: object): value is GetTenantUserResponse; export declare function GetTenantUserResponseFromJSON(json: any): GetTenantUserResponse; export declare function GetTenantUserResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetTenantUserResponse; export declare function GetTenantUserResponseToJSON(json: any): GetTenantUserResponse; export declare function GetTenantUserResponseToJSONTyped(value?: GetTenantUserResponse | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GetTenantUserResponse.d.ts.map