github.com/yaegashi/msgraph.go@v0.1.4/v1.0/ModelIdentity.go (about)

     1  // Code generated by msgraph.go/gen DO NOT EDIT.
     2  
     3  package msgraph
     4  
     5  // Identity undocumented
     6  type Identity struct {
     7  	// Object is the base model of Identity
     8  	Object
     9  	// DisplayName undocumented
    10  	DisplayName *string `json:"displayName,omitempty"`
    11  	// ID undocumented
    12  	ID *string `json:"id,omitempty"`
    13  }
    14  
    15  // IdentityProvider undocumented
    16  type IdentityProvider struct {
    17  	// Entity is the base model of IdentityProvider
    18  	Entity
    19  	// Type undocumented
    20  	Type *string `json:"type,omitempty"`
    21  	// Name undocumented
    22  	Name *string `json:"name,omitempty"`
    23  	// ClientID undocumented
    24  	ClientID *string `json:"clientId,omitempty"`
    25  	// ClientSecret undocumented
    26  	ClientSecret *string `json:"clientSecret,omitempty"`
    27  }
    28  
    29  // IdentitySet undocumented
    30  type IdentitySet struct {
    31  	// Object is the base model of IdentitySet
    32  	Object
    33  	// Application undocumented
    34  	Application *Identity `json:"application,omitempty"`
    35  	// Device undocumented
    36  	Device *Identity `json:"device,omitempty"`
    37  	// User undocumented
    38  	User *Identity `json:"user,omitempty"`
    39  }