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 UpdateHashTagBody */ export interface UpdateHashTagBody { /** * * @type {string} * @memberof UpdateHashTagBody */ tenantId?: string; /** * * @type {string} * @memberof UpdateHashTagBody */ url?: string; /** * * @type {string} * @memberof UpdateHashTagBody */ tag?: string; } /** * Check if a given object implements the UpdateHashTagBody interface. */ export declare function instanceOfUpdateHashTagBody(value: object): value is UpdateHashTagBody; export declare function UpdateHashTagBodyFromJSON(json: any): UpdateHashTagBody; export declare function UpdateHashTagBodyFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateHashTagBody; export declare function UpdateHashTagBodyToJSON(json: any): UpdateHashTagBody; export declare function UpdateHashTagBodyToJSONTyped(value?: UpdateHashTagBody | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=UpdateHashTagBody.d.ts.map