<?php
declare(strict_types=1);
namespace App\Form\Model;
class ExportApplicationModel
{
private ?string $name = null;
/**
* @var array<string, mixed>
*/
private array $filters = [];
private string $type = 'applications';
private string $format = 'xlsx';
private array $columns = [
"instance_name" => "Instance name",
"company_trade_name" => "Trade name",
"company_legal_name" => "Legal name",
"company_uic" => "UIC",
"company_legal_form_other_description" => "Legal Form",
"company_incorporation_date" => "Incorporation date",
"months_of_doing_business" => "Months of doing business",
"mcc" => "MCC",
"business_activity_name" => "Business activity",
"company_website" => "Website",
"company_country" => "Country",
"company_city" => "City",
"company_county" => "County",
"company_zip" => "ZIP",
"company_address1" => "Address line 1",
"company_address2" => "Address line 2",
"company_correspondence_address" => "Correspondent address",
"company_address_of_shop" => "Address of Shop",
"created_at" => "Application Created at",
"review_start" => "Review Started date",
"review_end" => "Review Ended date ",
"onboarding_date" => "Onboading date",
"product_name" => "Product Type",
"channel" => "Processing type",
"product_status" => "Status",
"risk_score" => "Risk Score",
"merchant_jurisdiction" => "PAD or PUK",
"reviewer" => "Reviewer",
"token" => "Token",
];
public function getName(): ?string
{
return $this->name;
}
public function setName(?string $name): void
{
$this->name = $name;
}
/**
* @return array<string, mixed>
*/
public function getFilters(): array
{
return $this->filters;
}
/**
* @param array<string, mixed> $filters
*/
public function setFilters(array $filters): void
{
$this->filters = $filters;
}
public function getType(): string
{
return $this->type;
}
public function setType(string $type): void
{
$this->type = $type;
}
public function getFormat(): string
{
return $this->format;
}
public function setFormat(string $format): void
{
$this->format = $format;
}
public function getColumns(): array
{
return $this->columns;
}
public function setColumns(array $columns): void
{
$this->columns = $columns;
}
}