Class: TencentCloud::Organization::V20210331::CheckAccountDeleteResponse

Inherits:
Common::AbstractModel
  • Object
show all
Defined in:
lib/v20210331/models.rb

Overview

CheckAccountDelete返回参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

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

#AllowDeleteObject



712
713
714
# File 'lib/v20210331/models.rb', line 712

def AllowDelete
  @AllowDelete
end

#NotAllowReasonObject



712
713
714
# File 'lib/v20210331/models.rb', line 712

def NotAllowReason
  @NotAllowReason
end

#RequestIdObject



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