fastcomments-sdk
Version:
FastComments API Client - A SDK for interacting with the FastComments API
42 lines • 1.53 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 { APIStatus } from './APIStatus';
/**
*
* @export
* @interface GetTranslationsResponse
*/
export interface GetTranslationsResponse {
/**
* Construct a type with a set of properties K of type T
* @type {{ [key: string]: string; }}
* @memberof GetTranslationsResponse
*/
translations: {
[key: string]: string;
};
/**
*
* @type {APIStatus}
* @memberof GetTranslationsResponse
*/
status: APIStatus;
}
/**
* Check if a given object implements the GetTranslationsResponse interface.
*/
export declare function instanceOfGetTranslationsResponse(value: object): value is GetTranslationsResponse;
export declare function GetTranslationsResponseFromJSON(json: any): GetTranslationsResponse;
export declare function GetTranslationsResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetTranslationsResponse;
export declare function GetTranslationsResponseToJSON(json: any): GetTranslationsResponse;
export declare function GetTranslationsResponseToJSONTyped(value?: GetTranslationsResponse | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=GetTranslationsResponse.d.ts.map