@cranberry-money/shared-types
Version:
Shared TypeScript type definitions for Blueberry platform
12 lines • 412 B
TypeScript
export interface TaxResidency {
uuid: string;
userProfile: string;
country: string;
isPrimary: boolean;
taxNumber: string;
isExempted: boolean;
exemptionReason: string | null;
}
export type CreateTaxResidency = Omit<TaxResidency, 'uuid' | 'userProfile'>;
export type UpdateTaxResidency = Partial<Omit<TaxResidency, 'uuid' | 'userProfile'>>;
//# sourceMappingURL=tax-residency.d.ts.map