Class: TencentCloud::Organization::V20210331::CheckAccountDeleteResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Organization::V20210331::CheckAccountDeleteResponse
- Defined in:
- lib/v20210331/models.rb
Overview
CheckAccountDelete返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(allowdelete = nil, notallowreason = nil, requestid = nil) ⇒ CheckAccountDeleteResponse
constructor
A new instance of CheckAccountDeleteResponse.
Constructor Details
#initialize(allowdelete = nil, notallowreason = nil, requestid = nil) ⇒ CheckAccountDeleteResponse
714 715 716 717 718 |
# File 'lib/v20210331/models.rb', line 714 def initialize(allowdelete=nil, notallowreason=nil, requestid=nil) @AllowDelete = allowdelete @NotAllowReason = notallowreason @RequestId = requestid end |
Instance Attribute Details
#AllowDelete ⇒ Object
712 713 714 |
# File 'lib/v20210331/models.rb', line 712 def AllowDelete @AllowDelete end |
#NotAllowReason ⇒ Object
712 713 714 |
# File 'lib/v20210331/models.rb', line 712 def NotAllowReason @NotAllowReason end |
#RequestId ⇒ Object
712 713 714 |
# File 'lib/v20210331/models.rb', line 712 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
720 721 722 723 724 725 726 727 |
# File 'lib/v20210331/models.rb', line 720 def deserialize(params) @AllowDelete = params['AllowDelete'] unless params['NotAllowReason'].nil? @NotAllowReason = NotAllowReason.new @NotAllowReason.deserialize(params['NotAllowReason']) end @RequestId = params['RequestId'] end |