/** * 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. */ /** * DDEX producer copyright line * @export * @interface CreatePlaylistRequestBodyProducerCopyrightLine */ export interface CreatePlaylistRequestBodyProducerCopyrightLine { /** * Copyright year (4 characters) * @type {string} * @memberof CreatePlaylistRequestBodyProducerCopyrightLine */ year: string; /** * Copyright text * @type {string} * @memberof CreatePlaylistRequestBodyProducerCopyrightLine */ text: string; } /** * Check if a given object implements the CreatePlaylistRequestBodyProducerCopyrightLine interface. */ export declare function instanceOfCreatePlaylistRequestBodyProducerCopyrightLine(value: object): value is CreatePlaylistRequestBodyProducerCopyrightLine; export declare function CreatePlaylistRequestBodyProducerCopyrightLineFromJSON(json: any): CreatePlaylistRequestBodyProducerCopyrightLine; export declare function CreatePlaylistRequestBodyProducerCopyrightLineFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreatePlaylistRequestBodyProducerCopyrightLine; export declare function CreatePlaylistRequestBodyProducerCopyrightLineToJSON(value?: CreatePlaylistRequestBodyProducerCopyrightLine | null): any;