/** * 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 ExtendedPaymentSplit */ export interface ExtendedPaymentSplit { /** * * @type {number} * @memberof ExtendedPaymentSplit */ userId?: number; /** * * @type {number} * @memberof ExtendedPaymentSplit */ percentage: number; /** * * @type {string} * @memberof ExtendedPaymentSplit */ ethWallet?: string; /** * * @type {string} * @memberof ExtendedPaymentSplit */ payoutWallet: string; /** * * @type {number} * @memberof ExtendedPaymentSplit */ amount: number; } /** * Check if a given object implements the ExtendedPaymentSplit interface. */ export declare function instanceOfExtendedPaymentSplit(value: object): value is ExtendedPaymentSplit; export declare function ExtendedPaymentSplitFromJSON(json: any): ExtendedPaymentSplit; export declare function ExtendedPaymentSplitFromJSONTyped(json: any, ignoreDiscriminator: boolean): ExtendedPaymentSplit; export declare function ExtendedPaymentSplitToJSON(value?: ExtendedPaymentSplit | null): any;