blob: 769b49a6941af747f583d36d1195eaab39dbb3c0 [file] [log] [blame]
<?php
// This file is auto-generated, don't edit it. Thanks.
namespace RocketMQ\Eventbridge\SDK\Models\UpdateConnectionRequest\authParameters;
use AlibabaCloud\Tea\Model;
use RocketMQ\Eventbridge\SDK\Models\UpdateConnectionRequest\authParameters\oauthParameters\clientParameters;
use RocketMQ\Eventbridge\SDK\Models\UpdateConnectionRequest\authParameters\oauthParameters\oauthHttpParameters;
class oauthParameters extends Model {
protected $_name = [
'authorizationEndpoint' => 'authorizationEndpoint',
'clientParameters' => 'clientParameters',
'httpMethod' => 'httpMethod',
'oauthHttpParameters' => 'oauthHttpParameters',
];
public function validate() {}
public function toMap() {
$res = [];
if (null !== $this->authorizationEndpoint) {
$res['authorizationEndpoint'] = $this->authorizationEndpoint;
}
if (null !== $this->clientParameters) {
$res['clientParameters'] = null !== $this->clientParameters ? $this->clientParameters->toMap() : null;
}
if (null !== $this->httpMethod) {
$res['httpMethod'] = $this->httpMethod;
}
if (null !== $this->oauthHttpParameters) {
$res['oauthHttpParameters'] = null !== $this->oauthHttpParameters ? $this->oauthHttpParameters->toMap() : null;
}
return $res;
}
/**
* @param array $map
* @return oauthParameters
*/
public static function fromMap($map = []) {
$model = new self();
if(isset($map['authorizationEndpoint'])){
$model->authorizationEndpoint = $map['authorizationEndpoint'];
}
if(isset($map['clientParameters'])){
$model->clientParameters = clientParameters::fromMap($map['clientParameters']);
}
if(isset($map['httpMethod'])){
$model->httpMethod = $map['httpMethod'];
}
if(isset($map['oauthHttpParameters'])){
$model->oauthHttpParameters = oauthHttpParameters::fromMap($map['oauthHttpParameters']);
}
return $model;
}
/**
* @description The endpoint that is used to obtain the OAuth token.
* @example http://localhost:8080/oauth/token
* @var string
*/
public $authorizationEndpoint;
/**
* @description The parameters that are configured for the client.
* @var clientParameters
*/
public $clientParameters;
/**
* @description The HTTP request method. Valid values:
- GET
- POST
- HEAD
* @example POST
* @var string
*/
public $httpMethod;
/**
* @description The request parameters for OAuth authentication.
* @var oauthHttpParameters
*/
public $oauthHttpParameters;
}