Class: TencentCloud::Tdid::V20210519::GetCredentialStateResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Tdid::V20210519::GetCredentialStateResponse
- Defined in:
- lib/v20210519/models.rb
Overview
GetCredentialState返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(credentialstate = nil, requestid = nil) ⇒ GetCredentialStateResponse
constructor
A new instance of GetCredentialStateResponse.
Constructor Details
#initialize(credentialstate = nil, requestid = nil) ⇒ GetCredentialStateResponse
Returns a new instance of GetCredentialStateResponse.
535 536 537 538 |
# File 'lib/v20210519/models.rb', line 535 def initialize(credentialstate=nil, requestid=nil) @CredentialState = credentialstate @RequestId = requestid end |
Instance Attribute Details
#CredentialState ⇒ Object
533 534 535 |
# File 'lib/v20210519/models.rb', line 533 def CredentialState @CredentialState end |
#RequestId ⇒ Object
533 534 535 |
# File 'lib/v20210519/models.rb', line 533 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
540 541 542 543 544 545 546 |
# File 'lib/v20210519/models.rb', line 540 def deserialize(params) unless params['CredentialState'].nil? @CredentialState = CredentialState.new @CredentialState.deserialize(params['CredentialState']) end @RequestId = params['RequestId'] end |