export interface AddTransactionResponse {
  "event_at": string;
  "park_id": string;
  "driver_profile_id": string,
  "category_id": string;
  "amount": string;
  "currency_code": string | "KZT",
  "description": string,
  "created_by": {
      "client_id": string,
      "key_id": string,
      "identity": string | "fleet-api"
  }
}