/** * Audius API * * The version of the OpenAPI document: 1.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 CreateCommentResponse */ export interface CreateCommentResponse { /** * The blockchain transaction hash * @type {string} * @memberof CreateCommentResponse */ transactionHash?: string; /** * The blockchain block hash * @type {string} * @memberof CreateCommentResponse */ blockHash?: string; /** * The blockchain block number/height * @type {number} * @memberof CreateCommentResponse */ blockNumber?: number; /** * The ID of the created comment * @type {string} * @memberof CreateCommentResponse */ commentId?: string; } /** * Check if a given object implements the CreateCommentResponse interface. */ export declare function instanceOfCreateCommentResponse(value: object): value is CreateCommentResponse; export declare function CreateCommentResponseFromJSON(json: any): CreateCommentResponse; export declare function CreateCommentResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateCommentResponse; export declare function CreateCommentResponseToJSON(value?: CreateCommentResponse | null): any;