Class: TencentCloud::Teo::V20220901::CNAMEDetail

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

Overview

CNAME 接入类型站点参数详情。

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(isfake = nil, ownershipverification = nil) ⇒ CNAMEDetail

Returns a new instance of CNAMEDetail.



2295
2296
2297
2298
# File 'lib/v20220901/models.rb', line 2295

def initialize(isfake=nil, ownershipverification=nil)
  @IsFake = isfake
  @OwnershipVerification = ownershipverification
end

Instance Attribute Details

#IsFakeObject

<li> 0:非伪站点;</li> <li> 1:伪站点。</li>

Parameters:



2293
2294
2295
# File 'lib/v20220901/models.rb', line 2293

def IsFake
  @IsFake
end

#OwnershipVerificationObject

<li> 0:非伪站点;</li> <li> 1:伪站点。</li>

Parameters:



2293
2294
2295
# File 'lib/v20220901/models.rb', line 2293

def OwnershipVerification
  @OwnershipVerification
end

Instance Method Details

#deserialize(params) ⇒ Object



2300
2301
2302
2303
2304
2305
2306
# File 'lib/v20220901/models.rb', line 2300

def deserialize(params)
  @IsFake = params['IsFake']
  unless params['OwnershipVerification'].nil?
    @OwnershipVerification = OwnershipVerification.new
    @OwnershipVerification.deserialize(params['OwnershipVerification'])
  end
end