class OneDriveForBusiness::IdentitySet
Attributes
application[R]
user[R]
Public Class Methods
new(fields)
click to toggle source
# File lib/onedrive_for_business/identity_set.rb, line 3 def initialize(fields) @application = Identity.new(fields['application']) if fields['application'] @user = Identity.new(fields['user']) if fields['user'] end