mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-27 12:36:14 +01:00
payment method types
This commit is contained in:
parent
9c44fc1329
commit
36e65f08ca
@ -2,5 +2,5 @@ export enum PaymentMethodType {
|
||||
Card = 0,
|
||||
BankAccount = 1,
|
||||
PayPal = 2,
|
||||
Bitcoin = 3,
|
||||
BitPay = 3,
|
||||
}
|
||||
|
@ -1,3 +1,4 @@
|
||||
import { PaymentMethodType } from '../../enums/paymentMethodType';
|
||||
import { PlanType } from '../../enums/planType';
|
||||
|
||||
export class OrganizationCreateRequest {
|
||||
@ -6,6 +7,7 @@ export class OrganizationCreateRequest {
|
||||
billingEmail: string;
|
||||
planType: PlanType;
|
||||
key: string;
|
||||
paymentMethodType: PaymentMethodType;
|
||||
paymentToken: string;
|
||||
additionalSeats: number;
|
||||
additionalStorageGb: number;
|
||||
|
@ -1,3 +1,6 @@
|
||||
import { PaymentMethodType } from '../../enums/paymentMethodType';
|
||||
|
||||
export class PaymentRequest {
|
||||
paymentMethodType: PaymentMethodType;
|
||||
paymentToken: string;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user