github.com/yaegashi/msgraph.go@v0.1.4/beta/ModelString.go (about)

     1  // Code generated by msgraph.go/gen DO NOT EDIT.
     2  
     3  package msgraph
     4  
     5  // StringKeyAttributeMappingSourceValuePair undocumented
     6  type StringKeyAttributeMappingSourceValuePair struct {
     7  	// Object is the base model of StringKeyAttributeMappingSourceValuePair
     8  	Object
     9  	// Key undocumented
    10  	Key *string `json:"key,omitempty"`
    11  	// Value undocumented
    12  	Value *AttributeMappingSource `json:"value,omitempty"`
    13  }
    14  
    15  // StringKeyLongValuePair undocumented
    16  type StringKeyLongValuePair struct {
    17  	// Object is the base model of StringKeyLongValuePair
    18  	Object
    19  	// Key undocumented
    20  	Key *string `json:"key,omitempty"`
    21  	// Value undocumented
    22  	Value *int `json:"value,omitempty"`
    23  }
    24  
    25  // StringKeyObjectValuePair undocumented
    26  type StringKeyObjectValuePair struct {
    27  	// Object is the base model of StringKeyObjectValuePair
    28  	Object
    29  	// Key undocumented
    30  	Key *string `json:"key,omitempty"`
    31  }
    32  
    33  // StringKeyStringValuePair undocumented
    34  type StringKeyStringValuePair struct {
    35  	// Object is the base model of StringKeyStringValuePair
    36  	Object
    37  	// Key undocumented
    38  	Key *string `json:"key,omitempty"`
    39  	// Value undocumented
    40  	Value *string `json:"value,omitempty"`
    41  }