/** * 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. */ import type { Comment } from './Comment'; import type { Related } from './Related'; import type { VersionMetadata } from './VersionMetadata'; /** * * @export * @interface UserCommentsResponse */ export interface UserCommentsResponse { /** * * @type {number} * @memberof UserCommentsResponse */ latestChainBlock: number; /** * * @type {number} * @memberof UserCommentsResponse */ latestIndexedBlock: number; /** * * @type {number} * @memberof UserCommentsResponse */ latestChainSlotPlays: number; /** * * @type {number} * @memberof UserCommentsResponse */ latestIndexedSlotPlays: number; /** * * @type {string} * @memberof UserCommentsResponse */ signature: string; /** * * @type {string} * @memberof UserCommentsResponse */ timestamp: string; /** * * @type {VersionMetadata} * @memberof UserCommentsResponse */ version: VersionMetadata; /** * * @type {Array} * @memberof UserCommentsResponse */ data?: Array; /** * * @type {Related} * @memberof UserCommentsResponse */ related?: Related; } /** * Check if a given object implements the UserCommentsResponse interface. */ export declare function instanceOfUserCommentsResponse(value: object): value is UserCommentsResponse; export declare function UserCommentsResponseFromJSON(json: any): UserCommentsResponse; export declare function UserCommentsResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): UserCommentsResponse; export declare function UserCommentsResponseToJSON(value?: UserCommentsResponse | null): any;