fastcomments-sdk
Version:
FastComments API Client - A SDK for interacting with the FastComments API
84 lines • 2.35 kB
TypeScript
/**
* 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 GetTenantUsersResponse1
*/
export interface GetTenantUsersResponse1 {
/**
*
* @type {APIStatus}
* @memberof GetTenantUsersResponse1
*/
status: APIStatus;
/**
*
* @type {Array<User>}
* @memberof GetTenantUsersResponse1
*/
tenantUsers: Array<User>;
/**
*
* @type {string}
* @memberof GetTenantUsersResponse1
*/
reason: string;
/**
*
* @type {string}
* @memberof GetTenantUsersResponse1
*/
code: string;
/**
*
* @type {string}
* @memberof GetTenantUsersResponse1
*/
secondaryCode?: string;
/**
*
* @type {number}
* @memberof GetTenantUsersResponse1
*/
bannedUntil?: number;
/**
*
* @type {number}
* @memberof GetTenantUsersResponse1
*/
maxCharacterLength?: number;
/**
*
* @type {string}
* @memberof GetTenantUsersResponse1
*/
translatedError?: string;
/**
*
* @type {CustomConfigParameters}
* @memberof GetTenantUsersResponse1
*/
customConfig?: CustomConfigParameters;
}
/**
* Check if a given object implements the GetTenantUsersResponse1 interface.
*/
export declare function instanceOfGetTenantUsersResponse1(value: object): value is GetTenantUsersResponse1;
export declare function GetTenantUsersResponse1FromJSON(json: any): GetTenantUsersResponse1;
export declare function GetTenantUsersResponse1FromJSONTyped(json: any, ignoreDiscriminator: boolean): GetTenantUsersResponse1;
export declare function GetTenantUsersResponse1ToJSON(json: any): GetTenantUsersResponse1;
export declare function GetTenantUsersResponse1ToJSONTyped(value?: GetTenantUsersResponse1 | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=GetTenantUsersResponse1.d.ts.map