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/paymentMethod.ts
6464 views
1
// deno-lint-ignore-file
2
/* istanbul ignore file */
3
/* tslint:disable */
4
/* eslint-disable */
5
6
export type paymentMethod = {
7
id?: string;
8
method_name?: string;
9
type?: string;
10
state?: string;
11
data?: {
12
card_type?: string;
13
last4?: string;
14
email?: string;
15
};
16
created_at?: string;
17
updated_at?: string;
18
};
19
20