/** * 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 { SupporterReference } from './SupporterReference'; import type { User } from './User'; /** * * @export * @interface Tip */ export interface Tip { /** * * @type {string} * @memberof Tip */ amount: string; /** * * @type {User} * @memberof Tip */ sender: User; /** * * @type {User} * @memberof Tip */ receiver: User; /** * * @type {string} * @memberof Tip */ createdAt: string; /** * * @type {number} * @memberof Tip */ slot: number; /** * * @type {Array} * @memberof Tip */ followeeSupporters: Array; /** * * @type {string} * @memberof Tip */ txSignature: string; } /** * Check if a given object implements the Tip interface. */ export declare function instanceOfTip(value: object): value is Tip; export declare function TipFromJSON(json: any): Tip; export declare function TipFromJSONTyped(json: any, ignoreDiscriminator: boolean): Tip; export declare function TipToJSON(value?: Tip | null): any;