/** * 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 PaymentSplit */ export interface PaymentSplit { /** * * @type {number} * @memberof PaymentSplit */ userId: number; /** * * @type {number} * @memberof PaymentSplit */ percentage: number; } /** * Check if a given object implements the PaymentSplit interface. */ export declare function instanceOfPaymentSplit(value: object): value is PaymentSplit; export declare function PaymentSplitFromJSON(json: any): PaymentSplit; export declare function PaymentSplitFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaymentSplit; export declare function PaymentSplitToJSON(value?: PaymentSplit | null): any;