@openstream/client
Version:
Openstream Radio Server Client
10 lines • 344 B
TypeScript
import type { DateTime } from "../DateTime.js";
import type { PaymentMethodKind } from "./PaymentMethodKind.js";
export type PaymentMethod = {
_id: string;
user_id: string;
created_at: DateTime;
updated_at: DateTime;
deleted_at: DateTime | null | undefined;
} & PaymentMethodKind;
//# sourceMappingURL=PaymentMethod.d.ts.map