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 207 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 hugo697 762 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 840 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 843 days ago
import * as wmill from "https://deno.land/x/[email protected]/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 971 days ago
import * as wmill from "https://deno.land/x/[email protected]/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 1006 days ago
import * as wmill from "https://deno.land/x/[email protected]/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 1195 days ago