import Stripe from "https://esm.sh/stripe?target=deno";
type Stripe = {
token: string;
};
export async function main(
stripe_con: Stripe,
amount: number,
currency: string
) {
const token = stripe_con["token"];
const stripe = Stripe(`${token}`, {
httpClient: Stripe.createFetchHttpClient(),
});
const payout = await stripe.payouts.create({
amount: amount,
currency: `${currency}`,
});
return await payout.json();
}
Submitted by hugo697 382 days ago
import Stripe from "https://esm.sh/stripe?target=deno";
type Stripe = {
token: string;
};
export async function main(
stripe_con: Stripe,
amount: number,
currency: string,
) {
const token = stripe_con["token"];
const stripe = Stripe(`${token}`, {
httpClient: Stripe.createFetchHttpClient(),
});
const payout = await stripe.payouts.create({
amount: amount,
currency: `${currency}`,
});
return await payout.json();
}
Submitted by admin 460 days ago
import Stripe from "https://esm.sh/stripe?target=deno";
type Stripe = {
token: string;
};
export async function main(
stripe_con: Stripe,
amount: number,
currency: string,
) {
const token = stripe_con["token"];
const stripe = Stripe(
`${token}`,
{
httpClient: Stripe.createFetchHttpClient(),
},
);
const payout = await stripe.payouts.create({
amount: amount,
currency: `${currency}`,
});
return await payout.json();
}
Submitted by admin 463 days ago
import * as wmill from "https://deno.land/x/windmill@v1.85.0/mod.ts";
import Stripe from "https://esm.sh/stripe?target=deno";
export async function main(
stripe_con: wmill.Resource<"stripe">,
amount: number,
currency: string,
) {
const token = stripe_con["token"];
const stripe = Stripe(
`${token}`,
{
httpClient: Stripe.createFetchHttpClient(),
},
);
const payout = await stripe.payouts.create({
amount: amount,
currency: `${currency}`,
});
return await payout.json();
}
Submitted by adam186 592 days ago
import * as wmill from "https://deno.land/x/windmill@v1.70.1/mod.ts";
import Stripe from "https://esm.sh/stripe?target=deno";
export async function main(
stripe_con: wmill.Resource<"stripe">,
amount: number,
currency: string,
) {
const token = stripe_con["token"];
const stripe = Stripe(
`${token}`,
{
httpClient: Stripe.createFetchHttpClient(),
},
);
const payout = await stripe.payouts.create({
amount: amount,
currency: `${currency}`,
});
return await payout.json();
}
Submitted by adam186 627 days ago
import * as wmill from "https://deno.land/x/windmill@v1.34.0/mod.ts";
import Stripe from "https://esm.sh/stripe?target=deno";
export async function main(
stripe_con: wmill.Resource<"stripe">,
amount: number,
currency: string,
) {
const token = stripe_con["token"];
const stripe = Stripe(
`${token}`,
{
httpClient: Stripe.createFetchHttpClient(),
},
);
const payout = await stripe.payouts.create({
amount: amount,
currency: `${currency}`,
});
return await payout.json();
}
Submitted by rossmccrann 815 days ago