UNPKG

@openstream/client

Version:
10 lines 344 B
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