All files / src/hooks/acquirer-api/account EnterpriseData.tsx

0% Statements 0/0
0% Branches 0/0
0% Functions 0/0
0% Lines 0/0

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34                                                                   
 
export type EnterpriseData = {
  accID: number;
  accTypeID: number;
  allowAddingBankAccounts: boolean;
  allowP2P: boolean;
  allowVolunteers: boolean;
  allowedCategoryCodes: null | string[];
  amexCreditCardFees: number;
  billingDescriptor: string;
  canProcessMoney: boolean;
  canTransferMoney: boolean;
  categoryCode: null | string;
  createdAt: number;
  creditCardFees: number;
  debitCardFees: number;
  deletedAt: null | number;
  description: string;
  hasProcessedMoney: boolean;
  imageURL: string;
  isController: boolean;
  name: string;
  ownershipType: string;
  parentAccID: null | number;
  phoneNumber: string;
  servicePhoneNumber: string;
  slug: string;
  termsAcceptedAt: null | number;
  termsAcceptedLastAt: null | number;
  type: string;
  updatedAt: number;
  websiteURL: string;
};