/** * 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 Repost */ export interface Repost { /** * * @type {string} * @memberof Repost */ repostItemId: string; /** * * @type {string} * @memberof Repost */ repostType: string; /** * * @type {string} * @memberof Repost */ userId: string; } /** * Check if a given object implements the Repost interface. */ export declare function instanceOfRepost(value: object): value is Repost; export declare function RepostFromJSON(json: any): Repost; export declare function RepostFromJSONTyped(json: any, ignoreDiscriminator: boolean): Repost; export declare function RepostToJSON(value?: Repost | null): any;