Class: TencentCloud::Mrs::V20200910::PdfInfo

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

Overview

体检报告PDF信息

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(url = nil, base64 = nil) ⇒ PdfInfo

Returns a new instance of PdfInfo.



8624
8625
8626
8627
# File 'lib/v20200910/models.rb', line 8624

def initialize(url=nil, base64=nil)
  @Url = url
  @Base64 = base64
end

Instance Attribute Details

#Base64Object

Parameters:

  • Url:

    pdf文件url链接(暂不支持)

  • Base64:

    pdf文件base64编码字符串



8622
8623
8624
# File 'lib/v20200910/models.rb', line 8622

def Base64
  @Base64
end

#UrlObject

Parameters:

  • Url:

    pdf文件url链接(暂不支持)

  • Base64:

    pdf文件base64编码字符串



8622
8623
8624
# File 'lib/v20200910/models.rb', line 8622

def Url
  @Url
end

Instance Method Details

#deserialize(params) ⇒ Object



8629
8630
8631
8632
# File 'lib/v20200910/models.rb', line 8629

def deserialize(params)
  @Url = params['Url']
  @Base64 = params['Base64']
end