Class: TencentCloud::Sqlserver::V20180328::ModifyAccountRemarkRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Sqlserver::V20180328::ModifyAccountRemarkRequest
- Defined in:
- lib/v20180328/models.rb
Overview
ModifyAccountRemark请求参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(instanceid = nil, accounts = nil) ⇒ ModifyAccountRemarkRequest
constructor
A new instance of ModifyAccountRemarkRequest.
Constructor Details
#initialize(instanceid = nil, accounts = nil) ⇒ ModifyAccountRemarkRequest
Returns a new instance of ModifyAccountRemarkRequest.
8232 8233 8234 8235 |
# File 'lib/v20180328/models.rb', line 8232 def initialize(instanceid=nil, accounts=nil) @InstanceId = instanceid @Accounts = accounts end |
Instance Attribute Details
#Accounts ⇒ Object
8230 8231 8232 |
# File 'lib/v20180328/models.rb', line 8230 def Accounts @Accounts end |
#InstanceId ⇒ Object
8230 8231 8232 |
# File 'lib/v20180328/models.rb', line 8230 def InstanceId @InstanceId end |
Instance Method Details
#deserialize(params) ⇒ Object
8237 8238 8239 8240 8241 8242 8243 8244 8245 8246 8247 |
# File 'lib/v20180328/models.rb', line 8237 def deserialize(params) @InstanceId = params['InstanceId'] unless params['Accounts'].nil? @Accounts = [] params['Accounts'].each do |i| accountremark_tmp = AccountRemark.new accountremark_tmp.deserialize(i) @Accounts << accountremark_tmp end end end |