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