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/accountMembership.ts
6464 views
1
// deno-lint-ignore-file
2
/* istanbul ignore file */
3
/* tslint:disable */
4
/* eslint-disable */
5
6
export type accountMembership = {
7
id?: string;
8
name?: string;
9
slug?: string;
10
type?: string;
11
capabilities?: {
12
sites?: {
13
included?: number;
14
used?: number;
15
};
16
collaborators?: {
17
included?: number;
18
used?: number;
19
};
20
};
21
billing_name?: string;
22
billing_email?: string;
23
billing_details?: string;
24
billing_period?: string;
25
payment_method_id?: string;
26
type_name?: string;
27
type_id?: string;
28
owner_ids?: Array<string>;
29
roles_allowed?: Array<string>;
30
created_at?: string;
31
updated_at?: string;
32
};
33
34