/** * 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 UsdcPurchaseSellerNotificationActionData */ export interface UsdcPurchaseSellerNotificationActionData { /** * * @type {string} * @memberof UsdcPurchaseSellerNotificationActionData */ contentType: string; /** * * @type {string} * @memberof UsdcPurchaseSellerNotificationActionData */ buyerUserId: string; /** * * @type {string} * @memberof UsdcPurchaseSellerNotificationActionData */ sellerUserId: string; /** * * @type {string} * @memberof UsdcPurchaseSellerNotificationActionData */ amount: string; /** * * @type {string} * @memberof UsdcPurchaseSellerNotificationActionData */ extraAmount: string; /** * * @type {string} * @memberof UsdcPurchaseSellerNotificationActionData */ contentId: string; } /** * Check if a given object implements the UsdcPurchaseSellerNotificationActionData interface. */ export declare function instanceOfUsdcPurchaseSellerNotificationActionData(value: object): value is UsdcPurchaseSellerNotificationActionData; export declare function UsdcPurchaseSellerNotificationActionDataFromJSON(json: any): UsdcPurchaseSellerNotificationActionData; export declare function UsdcPurchaseSellerNotificationActionDataFromJSONTyped(json: any, ignoreDiscriminator: boolean): UsdcPurchaseSellerNotificationActionData; export declare function UsdcPurchaseSellerNotificationActionDataToJSON(value?: UsdcPurchaseSellerNotificationActionData | null): any;