/** * 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 { UserFeedItem } from './UserFeedItem'; import type { VersionMetadata } from './VersionMetadata'; /** * * @export * @interface UserFeedResponse */ export interface UserFeedResponse { /** * * @type {number} * @memberof UserFeedResponse */ latestChainBlock: number; /** * * @type {number} * @memberof UserFeedResponse */ latestIndexedBlock: number; /** * * @type {number} * @memberof UserFeedResponse */ latestChainSlotPlays: number; /** * * @type {number} * @memberof UserFeedResponse */ latestIndexedSlotPlays: number; /** * * @type {string} * @memberof UserFeedResponse */ signature: string; /** * * @type {string} * @memberof UserFeedResponse */ timestamp: string; /** * * @type {VersionMetadata} * @memberof UserFeedResponse */ version: VersionMetadata; /** * * @type {Array} * @memberof UserFeedResponse */ data?: Array; } /** * Check if a given object implements the UserFeedResponse interface. */ export declare function instanceOfUserFeedResponse(value: object): value is UserFeedResponse; export declare function UserFeedResponseFromJSON(json: any): UserFeedResponse; export declare function UserFeedResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): UserFeedResponse; export declare function UserFeedResponseToJSON(value?: UserFeedResponse | null): any;