UNPKG

fastcomments-sdk

Version:

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

84 lines 2.4 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 { CustomConfigParameters } from './CustomConfigParameters'; import type { User } from './User'; import type { APIStatus } from './APIStatus'; /** * * @export * @interface GetTenantUsers200Response */ export interface GetTenantUsers200Response { /** * * @type {APIStatus} * @memberof GetTenantUsers200Response */ status: APIStatus; /** * * @type {Array<User>} * @memberof GetTenantUsers200Response */ tenantUsers: Array<User>; /** * * @type {string} * @memberof GetTenantUsers200Response */ reason: string; /** * * @type {string} * @memberof GetTenantUsers200Response */ code: string; /** * * @type {string} * @memberof GetTenantUsers200Response */ secondaryCode?: string; /** * * @type {number} * @memberof GetTenantUsers200Response */ bannedUntil?: number; /** * * @type {number} * @memberof GetTenantUsers200Response */ maxCharacterLength?: number; /** * * @type {string} * @memberof GetTenantUsers200Response */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof GetTenantUsers200Response */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the GetTenantUsers200Response interface. */ export declare function instanceOfGetTenantUsers200Response(value: object): value is GetTenantUsers200Response; export declare function GetTenantUsers200ResponseFromJSON(json: any): GetTenantUsers200Response; export declare function GetTenantUsers200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetTenantUsers200Response; export declare function GetTenantUsers200ResponseToJSON(json: any): GetTenantUsers200Response; export declare function GetTenantUsers200ResponseToJSONTyped(value?: GetTenantUsers200Response | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GetTenantUsers200Response.d.ts.map