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

     1  // Code generated by msgraph.go/gen DO NOT EDIT.
     2  
     3  package msgraph
     4  
     5  import "time"
     6  
     7  // KeyCredential undocumented
     8  type KeyCredential struct {
     9  	// Object is the base model of KeyCredential
    10  	Object
    11  	// CustomKeyIdentifier undocumented
    12  	CustomKeyIdentifier *Binary `json:"customKeyIdentifier,omitempty"`
    13  	// DisplayName undocumented
    14  	DisplayName *string `json:"displayName,omitempty"`
    15  	// EndDateTime undocumented
    16  	EndDateTime *time.Time `json:"endDateTime,omitempty"`
    17  	// KeyID undocumented
    18  	KeyID *UUID `json:"keyId,omitempty"`
    19  	// StartDateTime undocumented
    20  	StartDateTime *time.Time `json:"startDateTime,omitempty"`
    21  	// Type undocumented
    22  	Type *string `json:"type,omitempty"`
    23  	// Usage undocumented
    24  	Usage *string `json:"usage,omitempty"`
    25  	// Key undocumented
    26  	Key *Binary `json:"key,omitempty"`
    27  }
    28  
    29  // KeyValue undocumented
    30  type KeyValue struct {
    31  	// Object is the base model of KeyValue
    32  	Object
    33  	// Key undocumented
    34  	Key *string `json:"key,omitempty"`
    35  	// Value undocumented
    36  	Value *string `json:"value,omitempty"`
    37  }
    38  
    39  // KeyValuePair undocumented
    40  type KeyValuePair struct {
    41  	// Object is the base model of KeyValuePair
    42  	Object
    43  	// Name Name for this key-value pair
    44  	Name *string `json:"name,omitempty"`
    45  	// Value Value for this key-value pair
    46  	Value *string `json:"value,omitempty"`
    47  }