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