class OneRoster::Types::Application

Attributes

app_id[R]
bearer[R]
name[R]
tenant_name[R]
uid[R]

Public Class Methods

new(attributes = {}, *) click to toggle source
# File lib/types/application.rb, line 10
def initialize(attributes = {}, *)
  @uid         = attributes['id']
  @bearer      = attributes['bearer']
  @name        = attributes['name']
  @tenant_name = attributes['tenant_name']
  @app_id      = attributes['oneroster_application_id']
end