/** * 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 Grant */ export interface Grant { /** * * @type {string} * @memberof Grant */ granteeAddress: string; /** * * @type {string} * @memberof Grant */ userId: string; /** * * @type {boolean} * @memberof Grant */ isRevoked: boolean; /** * * @type {boolean} * @memberof Grant */ isApproved: boolean; /** * * @type {string} * @memberof Grant */ createdAt: string; /** * * @type {string} * @memberof Grant */ updatedAt: string; } /** * Check if a given object implements the Grant interface. */ export declare function instanceOfGrant(value: object): value is Grant; export declare function GrantFromJSON(json: any): Grant; export declare function GrantFromJSONTyped(json: any, ignoreDiscriminator: boolean): Grant; export declare function GrantToJSON(value?: Grant | null): any;