/** * 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 EmailAccess */ export interface EmailAccess { /** * * @type {number} * @memberof EmailAccess */ id: number; /** * * @type {number} * @memberof EmailAccess */ emailOwnerUserId: number; /** * * @type {number} * @memberof EmailAccess */ receivingUserId: number; /** * * @type {number} * @memberof EmailAccess */ grantorUserId: number; /** * * @type {string} * @memberof EmailAccess */ encryptedKey: string; /** * * @type {boolean} * @memberof EmailAccess */ isInitial: boolean; /** * * @type {string} * @memberof EmailAccess */ createdAt: string; /** * * @type {string} * @memberof EmailAccess */ updatedAt: string; } /** * Check if a given object implements the EmailAccess interface. */ export declare function instanceOfEmailAccess(value: object): value is EmailAccess; export declare function EmailAccessFromJSON(json: any): EmailAccess; export declare function EmailAccessFromJSONTyped(json: any, ignoreDiscriminator: boolean): EmailAccess; export declare function EmailAccessToJSON(value?: EmailAccess | null): any;