UNPKG

fastcomments-sdk

Version:

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

45 lines 1.36 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 CreateHashTagBody */ export interface CreateHashTagBody { /** * * @type {string} * @memberof CreateHashTagBody */ tenantId?: string; /** * * @type {string} * @memberof CreateHashTagBody */ tag: string; /** * * @type {string} * @memberof CreateHashTagBody */ url?: string; } /** * Check if a given object implements the CreateHashTagBody interface. */ export declare function instanceOfCreateHashTagBody(value: object): value is CreateHashTagBody; export declare function CreateHashTagBodyFromJSON(json: any): CreateHashTagBody; export declare function CreateHashTagBodyFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateHashTagBody; export declare function CreateHashTagBodyToJSON(json: any): CreateHashTagBody; export declare function CreateHashTagBodyToJSONTyped(value?: CreateHashTagBody | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=CreateHashTagBody.d.ts.map