Class: TencentCloud::Live::V20180801::ModifyLiveDomainCertBindingsResponse

Inherits:
Common::AbstractModel
  • Object
show all
Defined in:
lib/v20180801/models.rb

Overview

ModifyLiveDomainCertBindings返回参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(mismatcheddomainnames = nil, errors = nil, requestid = nil) ⇒ 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

#ErrorsObject



12189
12190
12191
# File 'lib/v20180801/models.rb', line 12189

def Errors
  @Errors
end

#MismatchedDomainNamesObject



12189
12190
12191
# File 'lib/v20180801/models.rb', line 12189

def MismatchedDomainNames
  @MismatchedDomainNames
end

#RequestIdObject



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