/**
 * Neynar API
 * The Neynar API allows you to interact with the Farcaster protocol among other things. See the [Neynar docs](https://docs.neynar.com/reference) for more details.
 *
 * The version of the OpenAPI document: 3.175.0
 * Contact: team@neynar.com
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
import type { SignedKeyRequestSponsor } from './signed-key-request-sponsor';
export interface RegisterSignerKeyReqBody {
    /**
     * The unique identifier of a farcaster user or app (unsigned integer)
     */
    'app_fid': number;
    /**
     * unix timestamp in seconds that controls how long the signed key request is valid for. (24 hours from now is recommended)
     */
    'deadline': number;
    /**
     * Url to redirect to after the signer is approved. **Note** : This should only be used when requesting a signer from a native mobile application.
     */
    'redirect_url'?: string;
    /**
     * Signature generated by the custody address of the app. Signed data includes app_fid, deadline, signer\'s public key
     */
    'signature': string;
    /**
     * UUID of the signer. `signer_uuid` is paired with API key, can\'t use a `uuid` made with a different API key.
     */
    'signer_uuid': string;
    'sponsor'?: SignedKeyRequestSponsor;
}
