Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
quarto-dev
GitHub Repository: quarto-dev/quarto-cli
Path: blob/main/src/publish/netlify/api/models/accountSetup.ts
6464 views
1
// deno-lint-ignore-file
2
/* istanbul ignore file */
3
/* tslint:disable */
4
/* eslint-disable */
5
6
export type accountSetup = {
7
name: string;
8
type_id: string;
9
payment_method_id?: string;
10
period?: accountSetup.period;
11
extra_seats_block?: number;
12
};
13
14
export namespace accountSetup {
15
export enum period {
16
MONTHLY = "monthly",
17
YEARLY = "yearly",
18
}
19
}
20
21