fastcomments-sdk
Version:
FastComments API Client - A SDK for interacting with the FastComments API
77 lines • 2.24 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 { APIStatus } from './APIStatus';
/**
*
* @export
* @interface CreateV2PageReactResponse
*/
export interface CreateV2PageReactResponse {
/**
*
* @type {string}
* @memberof CreateV2PageReactResponse
*/
code: string;
/**
*
* @type {APIStatus}
* @memberof CreateV2PageReactResponse
*/
status: APIStatus;
/**
*
* @type {string}
* @memberof CreateV2PageReactResponse
*/
reason: string;
/**
*
* @type {string}
* @memberof CreateV2PageReactResponse
*/
secondaryCode?: string;
/**
*
* @type {number}
* @memberof CreateV2PageReactResponse
*/
bannedUntil?: number;
/**
*
* @type {number}
* @memberof CreateV2PageReactResponse
*/
maxCharacterLength?: number;
/**
*
* @type {string}
* @memberof CreateV2PageReactResponse
*/
translatedError?: string;
/**
*
* @type {CustomConfigParameters}
* @memberof CreateV2PageReactResponse
*/
customConfig?: CustomConfigParameters;
}
/**
* Check if a given object implements the CreateV2PageReactResponse interface.
*/
export declare function instanceOfCreateV2PageReactResponse(value: object): value is CreateV2PageReactResponse;
export declare function CreateV2PageReactResponseFromJSON(json: any): CreateV2PageReactResponse;
export declare function CreateV2PageReactResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateV2PageReactResponse;
export declare function CreateV2PageReactResponseToJSON(json: any): CreateV2PageReactResponse;
export declare function CreateV2PageReactResponseToJSONTyped(value?: CreateV2PageReactResponse | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=CreateV2PageReactResponse.d.ts.map