UNPKG

fastcomments-sdk

Version:

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

47 lines 1.35 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. */ /** * * @export * @interface TOSConfig */ export interface TOSConfig { /** * * @type {boolean} * @memberof TOSConfig */ enabled?: boolean; /** * Construct a type with a set of properties K of type T * @type {{ [key: string]: string; }} * @memberof TOSConfig */ textByLocale?: { [key: string]: string; }; /** * * @type {Date} * @memberof TOSConfig */ lastUpdated?: Date; } /** * Check if a given object implements the TOSConfig interface. */ export declare function instanceOfTOSConfig(value: object): value is TOSConfig; export declare function TOSConfigFromJSON(json: any): TOSConfig; export declare function TOSConfigFromJSONTyped(json: any, ignoreDiscriminator: boolean): TOSConfig; export declare function TOSConfigToJSON(json: any): TOSConfig; export declare function TOSConfigToJSONTyped(value?: TOSConfig | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=TOSConfig.d.ts.map