fastcomments-sdk
Version:
FastComments API Client - A SDK for interacting with the FastComments API
39 lines • 1.13 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.
*/
/**
*
* @export
* @interface MetaItem
*/
export interface MetaItem {
/**
*
* @type {string}
* @memberof MetaItem
*/
name: string;
/**
*
* @type {Array<string>}
* @memberof MetaItem
*/
values: Array<string>;
}
/**
* Check if a given object implements the MetaItem interface.
*/
export declare function instanceOfMetaItem(value: object): value is MetaItem;
export declare function MetaItemFromJSON(json: any): MetaItem;
export declare function MetaItemFromJSONTyped(json: any, ignoreDiscriminator: boolean): MetaItem;
export declare function MetaItemToJSON(json: any): MetaItem;
export declare function MetaItemToJSONTyped(value?: MetaItem | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=MetaItem.d.ts.map