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.
2859 2860 2861 2862 2863 |
# File 'lib/v20220817/models.rb', line 2859 def initialize(total=nil, users=nil, requestid=nil) @Total = total @Users = users @RequestId = requestid end |
Instance Attribute Details
#RequestId ⇒ Object
2857 2858 2859 |
# File 'lib/v20220817/models.rb', line 2857 def RequestId @RequestId end |
#Total ⇒ Object
2857 2858 2859 |
# File 'lib/v20220817/models.rb', line 2857 def Total @Total end |
#Users ⇒ Object
2857 2858 2859 |
# File 'lib/v20220817/models.rb', line 2857 def Users @Users end |
Instance Method Details
#deserialize(params) ⇒ Object
2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 |
# File 'lib/v20220817/models.rb', line 2865 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 |