Class: TencentCloud::Live::V20180801::BatchDomainOperateErrors
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Live::V20180801::BatchDomainOperateErrors
- Defined in:
- lib/v20180801/models.rb
Overview
批量操作域名相关接口,若其中个别域名操作失败将会跳过,相应的域名错误信息将统一汇总在此类型中
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(domainname = nil, code = nil, message = nil) ⇒ BatchDomainOperateErrors
constructor
A new instance of BatchDomainOperateErrors.
Constructor Details
#initialize(domainname = nil, code = nil, message = nil) ⇒ BatchDomainOperateErrors
Returns a new instance of BatchDomainOperateErrors.
665 666 667 668 669 |
# File 'lib/v20180801/models.rb', line 665 def initialize(domainname=nil, code=nil, =nil) @DomainName = domainname @Code = code @Message = end |
Instance Attribute Details
#Code ⇒ Object
663 664 665 |
# File 'lib/v20180801/models.rb', line 663 def Code @Code end |
#DomainName ⇒ Object
663 664 665 |
# File 'lib/v20180801/models.rb', line 663 def DomainName @DomainName end |
#Message ⇒ Object
663 664 665 |
# File 'lib/v20180801/models.rb', line 663 def Message @Message end |
Instance Method Details
#deserialize(params) ⇒ Object
671 672 673 674 675 |
# File 'lib/v20180801/models.rb', line 671 def deserialize(params) @DomainName = params['DomainName'] @Code = params['Code'] @Message = params['Message'] end |