Class: TencentCloud::Weilingwith::V20230427::ApplicationInfo
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Weilingwith::V20230427::ApplicationInfo
- Defined in:
- lib/v20230427/models.rb
Overview
应用描述
Instance Attribute Summary collapse
- #Address ⇒ Object
- #ApplicationId ⇒ Object
- #ApplicationLogo ⇒ Object
- #Description ⇒ Object
- #EnglishName ⇒ Object
- #Name ⇒ Object
- #Type ⇒ Object
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(applicationid = nil, name = nil, address = nil, applicationlogo = nil, type = nil, englishname = nil, description = nil) ⇒ ApplicationInfo
constructor
A new instance of ApplicationInfo.
Constructor Details
#initialize(applicationid = nil, name = nil, address = nil, applicationlogo = nil, type = nil, englishname = nil, description = nil) ⇒ ApplicationInfo
Returns a new instance of ApplicationInfo.
704 705 706 707 708 709 710 711 712 |
# File 'lib/v20230427/models.rb', line 704 def initialize(applicationid=nil, name=nil, address=nil, applicationlogo=nil, type=nil, englishname=nil, description=nil) @ApplicationId = applicationid @Name = name @Address = address @ApplicationLogo = applicationlogo @Type = type @EnglishName = englishname @Description = description end |
Instance Attribute Details
#Address ⇒ Object
702 703 704 |
# File 'lib/v20230427/models.rb', line 702 def Address @Address end |
#ApplicationId ⇒ Object
702 703 704 |
# File 'lib/v20230427/models.rb', line 702 def ApplicationId @ApplicationId end |
#ApplicationLogo ⇒ Object
702 703 704 |
# File 'lib/v20230427/models.rb', line 702 def ApplicationLogo @ApplicationLogo end |
#Description ⇒ Object
702 703 704 |
# File 'lib/v20230427/models.rb', line 702 def Description @Description end |
#EnglishName ⇒ Object
702 703 704 |
# File 'lib/v20230427/models.rb', line 702 def EnglishName @EnglishName end |
#Name ⇒ Object
702 703 704 |
# File 'lib/v20230427/models.rb', line 702 def Name @Name end |
#Type ⇒ Object
702 703 704 |
# File 'lib/v20230427/models.rb', line 702 def Type @Type end |
Instance Method Details
#deserialize(params) ⇒ Object
714 715 716 717 718 719 720 721 722 723 724 725 |
# File 'lib/v20230427/models.rb', line 714 def deserialize(params) @ApplicationId = params['ApplicationId'] @Name = params['Name'] @Address = params['Address'] unless params['ApplicationLogo'].nil? @ApplicationLogo = ApplicationLogo.new @ApplicationLogo.deserialize(params['ApplicationLogo']) end @Type = params['Type'] @EnglishName = params['EnglishName'] @Description = params['Description'] end |