Mayson Monorepo Documentation
    Preparing search index...

    The EphemeralKey object.

    interface EphemeralKey {
        id: string;
        object: "ephemeral_key";
        created: number;
        expires: number;
        livemode: boolean;
        secret?: string;
    }
    Index

    Properties

    id: string

    Unique identifier for the object.

    object: "ephemeral_key"

    String representing the object's type. Objects of the same type share the same value.

    created: number

    Time at which the object was created. Measured in seconds since the Unix epoch.

    expires: number

    Time at which the key will expire. Measured in seconds since the Unix epoch.

    livemode: boolean

    Has the value true if the object exists in live mode or the value false if the object exists in test mode.

    secret?: string

    The key's secret. You can use this value to make authorized requests to the Stripe API.