Class: SDM::AccountGrantCreateResponse

Inherits:
Object
  • Object
show all
Defined in:
lib/models/porcelain.rb

Overview

AccountGrantCreateResponse reports how the AccountGrants were created in the system.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(meta: nil, account_grant: nil, rate_limit: nil) ⇒ AccountGrantCreateResponse

Returns a new instance of AccountGrantCreateResponse.



283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
# File 'lib/models/porcelain.rb', line 283

def initialize(
  meta: nil,
  account_grant: nil,
  rate_limit: nil
)
  if meta != nil
    @meta = meta
  end
  if  != nil
    @account_grant = 
  end
  if rate_limit != nil
    @rate_limit = rate_limit
  end
end

Instance Attribute Details

#account_grantObject

The created AccountGrant.



279
280
281
# File 'lib/models/porcelain.rb', line 279

def 
  @account_grant
end

#metaObject

Reserved for future use.



277
278
279
# File 'lib/models/porcelain.rb', line 277

def meta
  @meta
end

#rate_limitObject

Rate limit information.



281
282
283
# File 'lib/models/porcelain.rb', line 281

def rate_limit
  @rate_limit
end

Instance Method Details

#to_json(options = {}) ⇒ Object



299
300
301
302
303
304
305
# File 'lib/models/porcelain.rb', line 299

def to_json(options = {})
  hash = {}
  self.instance_variables.each do |var|
    hash[var.id2name.delete_prefix("@")] = self.instance_variable_get var
  end
  hash.to_json
end