/** * 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 PurchaseSplit */ export interface PurchaseSplit { /** * * @type {number} * @memberof PurchaseSplit */ userId?: number; /** * * @type {string} * @memberof PurchaseSplit */ payoutWallet: string; /** * * @type {string} * @memberof PurchaseSplit */ amount: string; } /** * Check if a given object implements the PurchaseSplit interface. */ export declare function instanceOfPurchaseSplit(value: object): value is PurchaseSplit; export declare function PurchaseSplitFromJSON(json: any): PurchaseSplit; export declare function PurchaseSplitFromJSONTyped(json: any, ignoreDiscriminator: boolean): PurchaseSplit; export declare function PurchaseSplitToJSON(value?: PurchaseSplit | null): any;