/** * 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 SupporterDethronedNotificationActionData */ export interface SupporterDethronedNotificationActionData { /** * * @type {string} * @memberof SupporterDethronedNotificationActionData */ dethronedUserId: string; /** * * @type {string} * @memberof SupporterDethronedNotificationActionData */ senderUserId: string; /** * * @type {string} * @memberof SupporterDethronedNotificationActionData */ receiverUserId: string; } /** * Check if a given object implements the SupporterDethronedNotificationActionData interface. */ export declare function instanceOfSupporterDethronedNotificationActionData(value: object): value is SupporterDethronedNotificationActionData; export declare function SupporterDethronedNotificationActionDataFromJSON(json: any): SupporterDethronedNotificationActionData; export declare function SupporterDethronedNotificationActionDataFromJSONTyped(json: any, ignoreDiscriminator: boolean): SupporterDethronedNotificationActionData; export declare function SupporterDethronedNotificationActionDataToJSON(value?: SupporterDethronedNotificationActionData | null): any;