lib/v20180529/models.rb in tencentcloud-sdk-gaap-1.0.342 vs lib/v20180529/models.rb in tencentcloud-sdk-gaap-1.0.343

- old
+ new

@@ -737,28 +737,33 @@ # @type GeographicalZoneInnerCode: String # @param ContinentName: 大洲名称。 # @type ContinentName: String # @param ContinentInnerCode: 大洲编码。 # @type ContinentInnerCode: String + # @param Remark: 标注信息 + # 注意:此字段可能返回 null,表示取不到有效值。 + # @type Remark: String - attr_accessor :NationCountryName, :NationCountryInnerCode, :GeographicalZoneName, :GeographicalZoneInnerCode, :ContinentName, :ContinentInnerCode + attr_accessor :NationCountryName, :NationCountryInnerCode, :GeographicalZoneName, :GeographicalZoneInnerCode, :ContinentName, :ContinentInnerCode, :Remark - def initialize(nationcountryname=nil, nationcountryinnercode=nil, geographicalzonename=nil, geographicalzoneinnercode=nil, continentname=nil, continentinnercode=nil) + def initialize(nationcountryname=nil, nationcountryinnercode=nil, geographicalzonename=nil, geographicalzoneinnercode=nil, continentname=nil, continentinnercode=nil, remark=nil) @NationCountryName = nationcountryname @NationCountryInnerCode = nationcountryinnercode @GeographicalZoneName = geographicalzonename @GeographicalZoneInnerCode = geographicalzoneinnercode @ContinentName = continentname @ContinentInnerCode = continentinnercode + @Remark = remark end def deserialize(params) @NationCountryName = params['NationCountryName'] @NationCountryInnerCode = params['NationCountryInnerCode'] @GeographicalZoneName = params['GeographicalZoneName'] @GeographicalZoneInnerCode = params['GeographicalZoneInnerCode'] @ContinentName = params['ContinentName'] @ContinentInnerCode = params['ContinentInnerCode'] + @Remark = params['Remark'] end end # CreateCertificate请求参数结构体 class CreateCertificateRequest < TencentCloud::Common::AbstractModel