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

     1  // Code generated by msgraph.go/gen DO NOT EDIT.
     2  
     3  package msgraph
     4  
     5  // PublicClientApplication undocumented
     6  type PublicClientApplication struct {
     7  	// Object is the base model of PublicClientApplication
     8  	Object
     9  	// RedirectUris undocumented
    10  	RedirectUris []string `json:"redirectUris,omitempty"`
    11  }
    12  
    13  // PublicError undocumented
    14  type PublicError struct {
    15  	// Object is the base model of PublicError
    16  	Object
    17  	// Code undocumented
    18  	Code *string `json:"code,omitempty"`
    19  	// Message undocumented
    20  	Message *string `json:"message,omitempty"`
    21  	// Target undocumented
    22  	Target *string `json:"target,omitempty"`
    23  	// Details undocumented
    24  	Details []PublicErrorDetail `json:"details,omitempty"`
    25  	// InnerError undocumented
    26  	InnerError *PublicInnerError `json:"innerError,omitempty"`
    27  }
    28  
    29  // PublicErrorDetail undocumented
    30  type PublicErrorDetail struct {
    31  	// Object is the base model of PublicErrorDetail
    32  	Object
    33  	// Code undocumented
    34  	Code *string `json:"code,omitempty"`
    35  	// Message undocumented
    36  	Message *string `json:"message,omitempty"`
    37  	// Target undocumented
    38  	Target *string `json:"target,omitempty"`
    39  }
    40  
    41  // PublicErrorResponse undocumented
    42  type PublicErrorResponse struct {
    43  	// Object is the base model of PublicErrorResponse
    44  	Object
    45  	// Error undocumented
    46  	Error *PublicError `json:"error,omitempty"`
    47  }
    48  
    49  // PublicInnerError undocumented
    50  type PublicInnerError struct {
    51  	// Object is the base model of PublicInnerError
    52  	Object
    53  	// Code undocumented
    54  	Code *string `json:"code,omitempty"`
    55  	// Details undocumented
    56  	Details []PublicErrorDetail `json:"details,omitempty"`
    57  	// Message undocumented
    58  	Message *string `json:"message,omitempty"`
    59  	// Target undocumented
    60  	Target *string `json:"target,omitempty"`
    61  }