shop-php/extend/taobao/domain/OAuthOtherInfo.php

45 lines
472 B
PHP
Raw Normal View History

2023-10-10 14:54:50 +08:00
<?php
/**
* oauthOtherInfo
* @author auto create
*/
class OAuthOtherInfo
{
/**
* access_token
**/
public $access_token;
/**
* avatarUrl
**/
public $avatar_url;
/**
* id
**/
public $id;
/**
* nick
**/
public $nick;
/**
* 三方平台的openId
**/
public $open_id;
/**
* 三方平台类型
**/
public $platform_type;
/**
* 三方平台的unionId
**/
public $union_id;
}
?>