/** * 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 CreateGrantRequestBody */ export interface CreateGrantRequestBody { /** * The developer app address (API key) to grant authorization to * @type {string} * @memberof CreateGrantRequestBody */ appApiKey: string; } /** * Check if a given object implements the CreateGrantRequestBody interface. */ export declare function instanceOfCreateGrantRequestBody(value: object): value is CreateGrantRequestBody; export declare function CreateGrantRequestBodyFromJSON(json: any): CreateGrantRequestBody; export declare function CreateGrantRequestBodyFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateGrantRequestBody; export declare function CreateGrantRequestBodyToJSON(value?: CreateGrantRequestBody | null): any;