fastcomments-sdk
Version:
FastComments API Client - A SDK for interacting with the FastComments API
84 lines • 2.7 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 { GetUserInternalProfileResponseProfile } from './GetUserInternalProfileResponseProfile';
import type { APIStatus } from './APIStatus';
/**
*
* @export
* @interface GetUserInternalProfile200Response
*/
export interface GetUserInternalProfile200Response {
/**
*
* @type {GetUserInternalProfileResponseProfile}
* @memberof GetUserInternalProfile200Response
*/
profile: GetUserInternalProfileResponseProfile;
/**
*
* @type {APIStatus}
* @memberof GetUserInternalProfile200Response
*/
status: APIStatus;
/**
*
* @type {string}
* @memberof GetUserInternalProfile200Response
*/
reason: string;
/**
*
* @type {string}
* @memberof GetUserInternalProfile200Response
*/
code: string;
/**
*
* @type {string}
* @memberof GetUserInternalProfile200Response
*/
secondaryCode?: string;
/**
*
* @type {number}
* @memberof GetUserInternalProfile200Response
*/
bannedUntil?: number;
/**
*
* @type {number}
* @memberof GetUserInternalProfile200Response
*/
maxCharacterLength?: number;
/**
*
* @type {string}
* @memberof GetUserInternalProfile200Response
*/
translatedError?: string;
/**
*
* @type {CustomConfigParameters}
* @memberof GetUserInternalProfile200Response
*/
customConfig?: CustomConfigParameters;
}
/**
* Check if a given object implements the GetUserInternalProfile200Response interface.
*/
export declare function instanceOfGetUserInternalProfile200Response(value: object): value is GetUserInternalProfile200Response;
export declare function GetUserInternalProfile200ResponseFromJSON(json: any): GetUserInternalProfile200Response;
export declare function GetUserInternalProfile200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetUserInternalProfile200Response;
export declare function GetUserInternalProfile200ResponseToJSON(json: any): GetUserInternalProfile200Response;
export declare function GetUserInternalProfile200ResponseToJSONTyped(value?: GetUserInternalProfile200Response | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=GetUserInternalProfile200Response.d.ts.map