Class: TencentCloud::Organization::V20210331::ListSCIMCredentialsResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Organization::V20210331::ListSCIMCredentialsResponse
- Defined in:
- lib/v20210331/models.rb
Overview
ListSCIMCredentials返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(totalcounts = nil, scimcredentials = nil, requestid = nil) ⇒ ListSCIMCredentialsResponse
constructor
A new instance of ListSCIMCredentialsResponse.
Constructor Details
#initialize(totalcounts = nil, scimcredentials = nil, requestid = nil) ⇒ ListSCIMCredentialsResponse
Returns a new instance of ListSCIMCredentialsResponse.
5433 5434 5435 5436 5437 |
# File 'lib/v20210331/models.rb', line 5433 def initialize(totalcounts=nil, scimcredentials=nil, requestid=nil) @TotalCounts = totalcounts @SCIMCredentials = scimcredentials @RequestId = requestid end |
Instance Attribute Details
#RequestId ⇒ Object
5431 5432 5433 |
# File 'lib/v20210331/models.rb', line 5431 def RequestId @RequestId end |
#SCIMCredentials ⇒ Object
5431 5432 5433 |
# File 'lib/v20210331/models.rb', line 5431 def SCIMCredentials @SCIMCredentials end |
#TotalCounts ⇒ Object
5431 5432 5433 |
# File 'lib/v20210331/models.rb', line 5431 def TotalCounts @TotalCounts end |
Instance Method Details
#deserialize(params) ⇒ Object
5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 |
# File 'lib/v20210331/models.rb', line 5439 def deserialize(params) @TotalCounts = params['TotalCounts'] unless params['SCIMCredentials'].nil? @SCIMCredentials = [] params['SCIMCredentials'].each do |i| scimcredential_tmp = SCIMCredential.new scimcredential_tmp.deserialize(i) @SCIMCredentials << scimcredential_tmp end end @RequestId = params['RequestId'] end |