Class: TencentCloud::Cms::V20190321::Logo

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

Overview

Logo审核结果

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(confidence = nil, rrectf = nil, name = nil) ⇒ Logo

Returns a new instance of Logo.



1021
1022
1023
1024
1025
# File 'lib/v20190321/models.rb', line 1021

def initialize(confidence=nil, rrectf=nil, name=nil)
  @Confidence = confidence
  @RrectF = rrectf
  @Name = name
end

Instance Attribute Details

#ConfidenceObject

注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。

Parameters:

  • Confidence:

    logo图标置信度

  • RrectF:

    logo图标坐标信息

  • Name:

    logo图标名称



1019
1020
1021
# File 'lib/v20190321/models.rb', line 1019

def Confidence
  @Confidence
end

#NameObject

注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。

Parameters:

  • Confidence:

    logo图标置信度

  • RrectF:

    logo图标坐标信息

  • Name:

    logo图标名称



1019
1020
1021
# File 'lib/v20190321/models.rb', line 1019

def Name
  @Name
end

#RrectFObject

注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。

Parameters:

  • Confidence:

    logo图标置信度

  • RrectF:

    logo图标坐标信息

  • Name:

    logo图标名称



1019
1020
1021
# File 'lib/v20190321/models.rb', line 1019

def RrectF
  @RrectF
end

Instance Method Details

#deserialize(params) ⇒ Object



1027
1028
1029
1030
1031
1032
1033
1034
# File 'lib/v20190321/models.rb', line 1027

def deserialize(params)
  @Confidence = params['Confidence']
  unless params['RrectF'].nil?
    @RrectF = RrectF.new
    @RrectF.deserialize(params['RrectF'])
  end
  @Name = params['Name']
end