### Sample Case model for Transport sector

This is a sample UpdateCaseParams for Transport sector with all the parameters it admits.

```javascript
import {
  UpdateCaseParams,
  CaseSectorEnum,
  Currencies,
} from '@kloutit/kloutit-sdk';

const kloutitCase: UpdateCaseParams = {
  sector: CaseSectorEnum.TRANSPORT,
  filialIdentifier: 'B12345678', // If you do not have filials in your organization, leave this field empty
  transactionDate: new Date().toISOString(), // UTC date
  bankName: 'Sample bank',
  cardBrand: 'Sample card brand',
  last4Digits: '1234',
  is3DSPurchase: true,
  purchaseDate: new Date().toISOString(), // UTC date
  purchaseAmount: { currency: Currencies.EUR, value: 10 },
  isChargeRefundable: true,
  customerName: 'Node SDK sample',
  customerEmail: 'kloutit-node@example.com',
  customerPhone: '612345678',
  additionalInfo: 'Some optional additional info',
  communications: [
    {
      sender: 'Sender name',
      content: 'Communication content',
      date: new Date().toISOString(), // UTC date
    },
  ],

  service: 'Sample service',
  departureDate: new Date().toISOString(), // UTC date
  arrivalDate: new Date().toISOString(), // UTC date
  departureCity: 'Barcelona',
  arrivalCity: 'Madrid',
  rate: 'Sample rate',
  checkinConfirmation: true,
  departureCountry: 'Spain',
  destinationCountry: 'Spain',

  inboundDepartureDate: new Date().toISOString(), // UTC date
  inboundArrivalDate: new Date().toISOString(), // UTC date
  inboundDepartureCity: 'Madrid',
  inboundArrivalCity: 'Barcelona',
  inboundRate: 'Sample return rate',
  inboundDepartureCountry: 'Spain',
  inboundDestinationCountry: 'Spain',
};
```
