/** * 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 rights controller * @export * @interface DdexRightsController */ export interface DdexRightsController { /** * * @type {string} * @memberof DdexRightsController */ name: string; /** * * @type {Array} * @memberof DdexRightsController */ roles: Array; /** * Optional * @type {string} * @memberof DdexRightsController */ rightsShareUnknown?: string; } /** * Check if a given object implements the DdexRightsController interface. */ export declare function instanceOfDdexRightsController(value: object): value is DdexRightsController; export declare function DdexRightsControllerFromJSON(json: any): DdexRightsController; export declare function DdexRightsControllerFromJSONTyped(json: any, ignoreDiscriminator: boolean): DdexRightsController; export declare function DdexRightsControllerToJSON(value?: DdexRightsController | null): any;