/** * 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 CreateTrackNotificationActionData */ export interface CreateTrackNotificationActionData { /** * * @type {string} * @memberof CreateTrackNotificationActionData */ trackId: string; } /** * Check if a given object implements the CreateTrackNotificationActionData interface. */ export declare function instanceOfCreateTrackNotificationActionData(value: object): value is CreateTrackNotificationActionData; export declare function CreateTrackNotificationActionDataFromJSON(json: any): CreateTrackNotificationActionData; export declare function CreateTrackNotificationActionDataFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateTrackNotificationActionData; export declare function CreateTrackNotificationActionDataToJSON(value?: CreateTrackNotificationActionData | null): any;