@xuda.io/xuda-plugin-stripe-core
Version:
Xuda Stripe Connect Library
24 lines (23 loc) • 514 B
JavaScript
export function fields(doc) {
return [
{
column_size: 12,
fields: {
stripe_public_key: {
type: "text",
placeholder: "pk_test_sjOL1LPPK1qF2EJDUIxy6zDqU",
mandatory: true,
label: "Public Key",
size: 12,
},
stripe_secret_key: {
type: "text",
placeholder: "sk_test_JoM8krgdzSdqfg4VnMtbydmASO",
mandatory: true,
label: "Secret Key",
size: 12,
},
},
},
];
}