Files
midi-php/extend/Yzh/Model/H5usersign/H5UserReleaseRequest.php
2025-08-13 10:43:56 +08:00

48 lines
1.1 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
namespace Yzh\Model\H5usersign;
use Yzh\Model\BaseRequest;
/**
* 用户解约(测试账号专用接口)请求
* Class H5UserReleaseRequest
*/
class H5UserReleaseRequest extends BaseRequest
{
/**
* 综合服务主体 ID
* @var string
*/
public $broker_id;
/**
* 平台企业 ID
* @var string
*/
public $dealer_id;
/**
* 姓名
* @var string
*/
public $real_name;
/**
* 证件号码
* @var string
*/
public $id_card;
/**
* 证件类型 0身份证 2港澳居民来往内地通行证 3护照 5台湾居民来往大陆通行证 9港澳居民居住证 10台湾居民居住证 11外国人永久居留身份证 12外国人工作许可证
* @var int32
*/
public $certificate_type;
public function __construct($params = array())
{
foreach (array_keys(get_object_vars($this)) as $property) {
if (isset($params[$property])) {
$this->{$property} = $params[$property];
}
}
}
}