Sha256: 4789b8f4bf1c16991192425aafbb3df80bebe949fd8225b59c10ae79da23a808
Contents?: true
Size: 562 Bytes
Versions: 8
Compression:
Stored size: 562 Bytes
Contents
require 'fog/core/model' module Fog module Compute class Brightbox class UserCollaboration < Fog::Model identity :id attribute :status attribute :email attribute :role attribute :role_label attribute :account attribute :user attribute :inviter def account_id account['id'] || account[:id] end def destroy requires :identity connection.destroy_user_collaboration(identity) true end end end end end
Version data entries
8 entries across 8 versions & 3 rubygems