fastcomments-sdk
Version:
FastComments API Client - A SDK for interacting with the FastComments API
84 lines • 2.31 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 { PageUserEntry } from './PageUserEntry';
import type { APIStatus } from './APIStatus';
/**
*
* @export
* @interface GetUsersInfoResponse
*/
export interface GetUsersInfoResponse {
/**
*
* @type {Array<PageUserEntry>}
* @memberof GetUsersInfoResponse
*/
users: Array<PageUserEntry>;
/**
*
* @type {APIStatus}
* @memberof GetUsersInfoResponse
*/
status: APIStatus;
/**
*
* @type {string}
* @memberof GetUsersInfoResponse
*/
reason: string;
/**
*
* @type {string}
* @memberof GetUsersInfoResponse
*/
code: string;
/**
*
* @type {string}
* @memberof GetUsersInfoResponse
*/
secondaryCode?: string;
/**
*
* @type {number}
* @memberof GetUsersInfoResponse
*/
bannedUntil?: number;
/**
*
* @type {number}
* @memberof GetUsersInfoResponse
*/
maxCharacterLength?: number;
/**
*
* @type {string}
* @memberof GetUsersInfoResponse
*/
translatedError?: string;
/**
*
* @type {CustomConfigParameters}
* @memberof GetUsersInfoResponse
*/
customConfig?: CustomConfigParameters;
}
/**
* Check if a given object implements the GetUsersInfoResponse interface.
*/
export declare function instanceOfGetUsersInfoResponse(value: object): value is GetUsersInfoResponse;
export declare function GetUsersInfoResponseFromJSON(json: any): GetUsersInfoResponse;
export declare function GetUsersInfoResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetUsersInfoResponse;
export declare function GetUsersInfoResponseToJSON(json: any): GetUsersInfoResponse;
export declare function GetUsersInfoResponseToJSONTyped(value?: GetUsersInfoResponse | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=GetUsersInfoResponse.d.ts.map