1
0
Fork 0
mirror of synced 2025-03-29 11:49:58 +03:00
api-client-php/doc/customization/examples/custom-api-methods-with-dto/src/Dto/Customer.php

31 lines
471 B
PHP

<?php
/**
* PHP version 7.3
*
* @category Customer
* @package Retailcrm\Examples\CustomMethodsDto\Dto
*/
namespace Retailcrm\Examples\CustomMethodsDto\Dto;
/**
* Class Customer
*
* @category Customer
* @package Retailcrm\Examples\CustomMethodsDto\Dto
*/
class Customer
{
/** @var string */
public $firstName;
/** @var string */
public $lastName;
/** @var string */
public $patronymic;
/** @var string */
public $email;
}