Class: TencentCloud::Live::V20180801::ModifyLiveDomainCertBindingsResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Live::V20180801::ModifyLiveDomainCertBindingsResponse
- Defined in:
- lib/v20180801/models.rb
Overview
ModifyLiveDomainCertBindings返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(mismatcheddomainnames = nil, errors = nil, requestid = nil) ⇒ ModifyLiveDomainCertBindingsResponse
constructor
A new instance of ModifyLiveDomainCertBindingsResponse.
Constructor Details
#initialize(mismatcheddomainnames = nil, errors = nil, requestid = nil) ⇒ ModifyLiveDomainCertBindingsResponse
Returns a new instance of ModifyLiveDomainCertBindingsResponse.
12191 12192 12193 12194 12195 |
# File 'lib/v20180801/models.rb', line 12191 def initialize(mismatcheddomainnames=nil, errors=nil, requestid=nil) @MismatchedDomainNames = mismatcheddomainnames @Errors = errors @RequestId = requestid end |
Instance Attribute Details
#Errors ⇒ Object
12189 12190 12191 |
# File 'lib/v20180801/models.rb', line 12189 def Errors @Errors end |
#MismatchedDomainNames ⇒ Object
12189 12190 12191 |
# File 'lib/v20180801/models.rb', line 12189 def MismatchedDomainNames @MismatchedDomainNames end |
#RequestId ⇒ Object
12189 12190 12191 |
# File 'lib/v20180801/models.rb', line 12189 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
12197 12198 12199 12200 12201 12202 12203 12204 12205 12206 12207 12208 |
# File 'lib/v20180801/models.rb', line 12197 def deserialize(params) @MismatchedDomainNames = params['MismatchedDomainNames'] unless params['Errors'].nil? @Errors = [] params['Errors'].each do |i| batchdomainoperateerrors_tmp = BatchDomainOperateErrors.new batchdomainoperateerrors_tmp.deserialize(i) @Errors << batchdomainoperateerrors_tmp end end @RequestId = params['RequestId'] end |