Variable $StripeAccountLinkConst

$StripeAccountLink: {
    additionalProperties: false;
    properties: {
        created: {
            description: "Time at which the object was created. Measured in seconds since the Unix epoch.";
            example: 1627900796;
            type: "integer";
        };
        expires_at: {
            description: "The timestamp at which this account link will expire.";
            example: 1627987196;
            type: "integer";
        };
        object: {
            description: "String representing the object's type. Objects of the same type share the same value.";
            example: "account_link";
            type: "string";
        };
        url: {
            description: "The URL for the account link.";
            example: "https://example.com/account-link";
            type: "string";
        };
    };
    required: readonly ["object", "created", "expires_at", "url"];
    type: "object";
} = ...