Class: TencentCloud::Lowcode::V20210108::DescribeAppsRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Lowcode::V20210108::DescribeAppsRequest
- Defined in:
- lib/v20210108/models.rb
Overview
DescribeApps请求参数结构体
Instance Attribute Summary collapse
- #AppIds ⇒ Object
- #Channel ⇒ Object
- #EnvId ⇒ Object
- #Favorite ⇒ Object
- #Keyword ⇒ Object
- #Limit ⇒ Object
- #Offset ⇒ Object
- #Type ⇒ Object
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(limit = nil, offset = nil, envid = nil, keyword = nil, appids = nil, channel = nil, type = nil, favorite = nil) ⇒ DescribeAppsRequest
constructor
A new instance of DescribeAppsRequest.
Constructor Details
#initialize(limit = nil, offset = nil, envid = nil, keyword = nil, appids = nil, channel = nil, type = nil, favorite = nil) ⇒ DescribeAppsRequest
Returns a new instance of DescribeAppsRequest.
661 662 663 664 665 666 667 668 669 670 |
# File 'lib/v20210108/models.rb', line 661 def initialize(limit=nil, offset=nil, envid=nil, keyword=nil, appids=nil, channel=nil, type=nil, favorite=nil) @Limit = limit @Offset = offset @EnvId = envid @Keyword = keyword @AppIds = appids @Channel = channel @Type = type @Favorite = favorite end |
Instance Attribute Details
#AppIds ⇒ Object
659 660 661 |
# File 'lib/v20210108/models.rb', line 659 def AppIds @AppIds end |
#Channel ⇒ Object
659 660 661 |
# File 'lib/v20210108/models.rb', line 659 def Channel @Channel end |
#EnvId ⇒ Object
659 660 661 |
# File 'lib/v20210108/models.rb', line 659 def EnvId @EnvId end |
#Favorite ⇒ Object
659 660 661 |
# File 'lib/v20210108/models.rb', line 659 def Favorite @Favorite end |
#Keyword ⇒ Object
659 660 661 |
# File 'lib/v20210108/models.rb', line 659 def Keyword @Keyword end |
#Limit ⇒ Object
659 660 661 |
# File 'lib/v20210108/models.rb', line 659 def Limit @Limit end |
#Offset ⇒ Object
659 660 661 |
# File 'lib/v20210108/models.rb', line 659 def Offset @Offset end |
#Type ⇒ Object
659 660 661 |
# File 'lib/v20210108/models.rb', line 659 def Type @Type end |
Instance Method Details
#deserialize(params) ⇒ Object
672 673 674 675 676 677 678 679 680 681 |
# File 'lib/v20210108/models.rb', line 672 def deserialize(params) @Limit = params['Limit'] @Offset = params['Offset'] @EnvId = params['EnvId'] @Keyword = params['Keyword'] @AppIds = params['AppIds'] @Channel = params['Channel'] @Type = params['Type'] @Favorite = params['Favorite'] end |