UNPKG

fastcomments-sdk

Version:

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

41 lines 1.45 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. */ import type { TenantHashTag } from './TenantHashTag'; import type { APIStatus } from './APIStatus'; /** * * @export * @interface UpdateHashTagResponse */ export interface UpdateHashTagResponse { /** * * @type {APIStatus} * @memberof UpdateHashTagResponse */ status: APIStatus; /** * * @type {TenantHashTag} * @memberof UpdateHashTagResponse */ hashTag: TenantHashTag; } /** * Check if a given object implements the UpdateHashTagResponse interface. */ export declare function instanceOfUpdateHashTagResponse(value: object): value is UpdateHashTagResponse; export declare function UpdateHashTagResponseFromJSON(json: any): UpdateHashTagResponse; export declare function UpdateHashTagResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateHashTagResponse; export declare function UpdateHashTagResponseToJSON(json: any): UpdateHashTagResponse; export declare function UpdateHashTagResponseToJSONTyped(value?: UpdateHashTagResponse | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=UpdateHashTagResponse.d.ts.map