1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- <?php
- // This file is auto-generated, don't edit it. Thanks.
- namespace AlibabaCloud\SDK\Sts\V20150401\Models\AssumeRoleWithOIDCResponseBody;
- use AlibabaCloud\Tea\Model;
- class OIDCTokenInfo extends Model
- {
- /**
- * @var string
- */
- public $clientIds;
- /**
- * @var string
- */
- public $issuer;
- /**
- * @var string
- */
- public $subject;
- protected $_name = [
- 'clientIds' => 'ClientIds',
- 'issuer' => 'Issuer',
- 'subject' => 'Subject',
- ];
- public function validate()
- {
- }
- public function toMap()
- {
- $res = [];
- if (null !== $this->clientIds) {
- $res['ClientIds'] = $this->clientIds;
- }
- if (null !== $this->issuer) {
- $res['Issuer'] = $this->issuer;
- }
- if (null !== $this->subject) {
- $res['Subject'] = $this->subject;
- }
- return $res;
- }
- /**
- * @param array $map
- *
- * @return OIDCTokenInfo
- */
- public static function fromMap($map = [])
- {
- $model = new self();
- if (isset($map['ClientIds'])) {
- $model->clientIds = $map['ClientIds'];
- }
- if (isset($map['Issuer'])) {
- $model->issuer = $map['Issuer'];
- }
- if (isset($map['Subject'])) {
- $model->subject = $map['Subject'];
- }
- return $model;
- }
- }
|