UNPKG

fastcomments-sdk

Version:

FastComments API Client - A SDK for interacting with the FastComments API

85 lines 2.48 kB
/** * 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 GetTranslations200Response */ export interface GetTranslations200Response { /** * Construct a type with a set of properties K of type T * @type {{ [key: string]: string; }} * @memberof GetTranslations200Response */ translations: { [key: string]: string; }; /** * * @type {APIStatus} * @memberof GetTranslations200Response */ status: APIStatus; /** * * @type {string} * @memberof GetTranslations200Response */ reason: string; /** * * @type {string} * @memberof GetTranslations200Response */ code: string; /** * * @type {string} * @memberof GetTranslations200Response */ secondaryCode?: string; /** * * @type {number} * @memberof GetTranslations200Response */ bannedUntil?: number; /** * * @type {number} * @memberof GetTranslations200Response */ maxCharacterLength?: number; /** * * @type {string} * @memberof GetTranslations200Response */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof GetTranslations200Response */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the GetTranslations200Response interface. */ export declare function instanceOfGetTranslations200Response(value: object): value is GetTranslations200Response; export declare function GetTranslations200ResponseFromJSON(json: any): GetTranslations200Response; export declare function GetTranslations200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetTranslations200Response; export declare function GetTranslations200ResponseToJSON(json: any): GetTranslations200Response; export declare function GetTranslations200ResponseToJSONTyped(value?: GetTranslations200Response | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GetTranslations200Response.d.ts.map