Skip to content

Commit

Permalink
Stylize the entity connection CSV column names
Browse files Browse the repository at this point in the history
  • Loading branch information
MKodde committed Aug 15, 2024
1 parent 9a8dcec commit fbd1160
Showing 1 changed file with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,22 +20,31 @@

namespace Surfnet\ServiceProviderDashboard\Domain\ValueObject;

use Symfony\Component\Serializer\Attribute\SerializedName;

class EntityConnectionExport
{
#[SerializedName('Servicename')]
public string $nameOfService;

#[SerializedName('Name')]
public string $nameOfEntity;

#[SerializedName('entityID / Client ID')]
public string $entityId;

#[SerializedName('Support contact')]
public string $supportContact;

#[SerializedName('Technical contact')]
public string $technicalContact;

#[SerializedName('Admin contact')]
public string $adminContact;

/**
* @var string[]
*/
#[SerializedName('Connected IdP')]
public array $idps;
}

0 comments on commit fbd1160

Please sign in to comment.