Variable $StripeAddressConst
$StripeAddress: {
properties: {
city: {
example: "Paris";
nullable: false;
type: "string";
};
country: {
example: "FR";
nullable: false;
type: "string";
};
line1: {
example: "10 rue de la Paix";
nullable: false;
type: "string";
};
line2: {
example: "Batiment B";
type: "string";
};
postalCode: {
example: "75010";
nullable: false;
type: "string";
};
state: {
example: "Paris";
type: "string";
};
};
required: readonly ["country", "city", "line1", "postalCode"];
type: "object";
} = ...