/** * 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 TastemakerNotificationActionData */ export interface TastemakerNotificationActionData { /** * * @type {string} * @memberof TastemakerNotificationActionData */ tastemakerItemOwnerId: string; /** * * @type {string} * @memberof TastemakerNotificationActionData */ tastemakerItemId: string; /** * * @type {string} * @memberof TastemakerNotificationActionData */ action: string; /** * * @type {string} * @memberof TastemakerNotificationActionData */ tastemakerItemType: string; /** * * @type {string} * @memberof TastemakerNotificationActionData */ tastemakerUserId: string; } /** * Check if a given object implements the TastemakerNotificationActionData interface. */ export declare function instanceOfTastemakerNotificationActionData(value: object): value is TastemakerNotificationActionData; export declare function TastemakerNotificationActionDataFromJSON(json: any): TastemakerNotificationActionData; export declare function TastemakerNotificationActionDataFromJSONTyped(json: any, ignoreDiscriminator: boolean): TastemakerNotificationActionData; export declare function TastemakerNotificationActionDataToJSON(value?: TastemakerNotificationActionData | null): any;