mirror of
https://github.com/bitwarden/jslib
synced 2025-12-30 07:03:21 +00:00
10 lines
187 B
TypeScript
10 lines
187 B
TypeScript
export class BitPayInvoiceRequest {
|
|
userId: string;
|
|
organizationId: string;
|
|
credit: boolean;
|
|
amount: number;
|
|
returnUrl: string;
|
|
name: string;
|
|
email: string;
|
|
}
|