/** * 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 DdexCopyright */ export interface DdexCopyright { /** * Copyright year (4 characters) * @type {string} * @memberof DdexCopyright */ year: string; /** * Copyright text * @type {string} * @memberof DdexCopyright */ text: string; } /** * Check if a given object implements the DdexCopyright interface. */ export declare function instanceOfDdexCopyright(value: object): value is DdexCopyright; export declare function DdexCopyrightFromJSON(json: any): DdexCopyright; export declare function DdexCopyrightFromJSONTyped(json: any, ignoreDiscriminator: boolean): DdexCopyright; export declare function DdexCopyrightToJSON(value?: DdexCopyright | null): any;