Class: TencentCloud::Lcic::V20220817::DescribeSdkAppIdUsersResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Lcic::V20220817::DescribeSdkAppIdUsersResponse
- Defined in:
- lib/v20220817/models.rb
Overview
DescribeSdkAppIdUsers返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(total = nil, users = nil, requestid = nil) ⇒ DescribeSdkAppIdUsersResponse
constructor
A new instance of DescribeSdkAppIdUsersResponse.
Constructor Details
#initialize(total = nil, users = nil, requestid = nil) ⇒ DescribeSdkAppIdUsersResponse
Returns a new instance of DescribeSdkAppIdUsersResponse.
2799 2800 2801 2802 2803 |
# File 'lib/v20220817/models.rb', line 2799 def initialize(total=nil, users=nil, requestid=nil) @Total = total @Users = users @RequestId = requestid end |
Instance Attribute Details
#RequestId ⇒ Object
2797 2798 2799 |
# File 'lib/v20220817/models.rb', line 2797 def RequestId @RequestId end |
#Total ⇒ Object
2797 2798 2799 |
# File 'lib/v20220817/models.rb', line 2797 def Total @Total end |
#Users ⇒ Object
2797 2798 2799 |
# File 'lib/v20220817/models.rb', line 2797 def Users @Users end |
Instance Method Details
#deserialize(params) ⇒ Object
2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 |
# File 'lib/v20220817/models.rb', line 2805 def deserialize(params) @Total = params['Total'] unless params['Users'].nil? @Users = [] params['Users'].each do |i| userinfo_tmp = UserInfo.new userinfo_tmp.deserialize(i) @Users << userinfo_tmp end end @RequestId = params['RequestId'] end |