OIDCTokenInfo.php 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. <?php
  2. // This file is auto-generated, don't edit it. Thanks.
  3. namespace AlibabaCloud\SDK\Sts\V20150401\Models\AssumeRoleWithOIDCResponseBody;
  4. use AlibabaCloud\Tea\Model;
  5. class OIDCTokenInfo extends Model
  6. {
  7. /**
  8. * @var string
  9. */
  10. public $clientIds;
  11. /**
  12. * @var string
  13. */
  14. public $issuer;
  15. /**
  16. * @var string
  17. */
  18. public $subject;
  19. protected $_name = [
  20. 'clientIds' => 'ClientIds',
  21. 'issuer' => 'Issuer',
  22. 'subject' => 'Subject',
  23. ];
  24. public function validate()
  25. {
  26. }
  27. public function toMap()
  28. {
  29. $res = [];
  30. if (null !== $this->clientIds) {
  31. $res['ClientIds'] = $this->clientIds;
  32. }
  33. if (null !== $this->issuer) {
  34. $res['Issuer'] = $this->issuer;
  35. }
  36. if (null !== $this->subject) {
  37. $res['Subject'] = $this->subject;
  38. }
  39. return $res;
  40. }
  41. /**
  42. * @param array $map
  43. *
  44. * @return OIDCTokenInfo
  45. */
  46. public static function fromMap($map = [])
  47. {
  48. $model = new self();
  49. if (isset($map['ClientIds'])) {
  50. $model->clientIds = $map['ClientIds'];
  51. }
  52. if (isset($map['Issuer'])) {
  53. $model->issuer = $map['Issuer'];
  54. }
  55. if (isset($map['Subject'])) {
  56. $model->subject = $map['Subject'];
  57. }
  58. return $model;
  59. }
  60. }