class Deltacloud::Realm

Attributes

limit[RW]
name[RW]
state[RW]

Public Instance Methods

to_hash(context) click to toggle source
# File lib/deltacloud/models/realm.rb, line 24
def to_hash(context)
  r = {
    :id => self.id,
    :href => context.realm_url(self.id),
    :name => name,
    :state => state,
    :limit => limit
  }
  r
end