UNPKG

fastcomments-sdk

Version:

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

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