/** * Dashboard API * Dashboard API documentation * * The version of the OpenAPI document: 1.0.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 PostAllowlistEntriesRequest */ export interface PostAllowlistEntriesRequest { /** * Valid blockchain wallet address, must be an alphanumeric string (underscores allowed for chains like Midnight) * @type {string} * @memberof PostAllowlistEntriesRequest */ walletPublicKey?: string; /** * * @type {string} * @memberof PostAllowlistEntriesRequest */ email?: string; /** * * @type {string} * @memberof PostAllowlistEntriesRequest */ emailDomain?: string; /** * * @type {string} * @memberof PostAllowlistEntriesRequest */ phoneNumber?: string; /** * * @type {string} * @memberof PostAllowlistEntriesRequest */ alias?: string; /** * * @type {string} * @memberof PostAllowlistEntriesRequest */ discordUsername?: string; /** * * @type {string} * @memberof PostAllowlistEntriesRequest */ twitterUsername?: string; /** * * @type {string} * @memberof PostAllowlistEntriesRequest */ farcasterUsername?: string; /** * Farcaster FID (numeric protocol identifier) to match * @type {number} * @memberof PostAllowlistEntriesRequest */ farcasterFid?: number; /** * * @type {string} * @memberof PostAllowlistEntriesRequest */ externalUserId?: string; } export declare function PostAllowlistEntriesRequestFromJSON(json: any): PostAllowlistEntriesRequest; export declare function PostAllowlistEntriesRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): PostAllowlistEntriesRequest; export declare function PostAllowlistEntriesRequestToJSON(value?: PostAllowlistEntriesRequest | null): any;