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

     1  // Code generated by msgraph.go/gen DO NOT EDIT.
     2  
     3  package msgraph
     4  
     5  import "time"
     6  
     7  // PasswordCredential undocumented
     8  type PasswordCredential struct {
     9  	// Object is the base model of PasswordCredential
    10  	Object
    11  	// CustomKeyIdentifier undocumented
    12  	CustomKeyIdentifier *Binary `json:"customKeyIdentifier,omitempty"`
    13  	// EndDateTime undocumented
    14  	EndDateTime *time.Time `json:"endDateTime,omitempty"`
    15  	// KeyID undocumented
    16  	KeyID *UUID `json:"keyId,omitempty"`
    17  	// StartDateTime undocumented
    18  	StartDateTime *time.Time `json:"startDateTime,omitempty"`
    19  	// SecretText undocumented
    20  	SecretText *string `json:"secretText,omitempty"`
    21  	// Hint undocumented
    22  	Hint *string `json:"hint,omitempty"`
    23  	// DisplayName undocumented
    24  	DisplayName *string `json:"displayName,omitempty"`
    25  }
    26  
    27  // PasswordProfile undocumented
    28  type PasswordProfile struct {
    29  	// Object is the base model of PasswordProfile
    30  	Object
    31  	// Password undocumented
    32  	Password *string `json:"password,omitempty"`
    33  	// ForceChangePasswordNextSignIn undocumented
    34  	ForceChangePasswordNextSignIn *bool `json:"forceChangePasswordNextSignIn,omitempty"`
    35  	// ForceChangePasswordNextSignInWithMFA undocumented
    36  	ForceChangePasswordNextSignInWithMFA *bool `json:"forceChangePasswordNextSignInWithMfa,omitempty"`
    37  }
    38  
    39  // PasswordSingleSignOnCredentialSet undocumented
    40  type PasswordSingleSignOnCredentialSet struct {
    41  	// Object is the base model of PasswordSingleSignOnCredentialSet
    42  	Object
    43  	// ID undocumented
    44  	ID *string `json:"id,omitempty"`
    45  	// Credentials undocumented
    46  	Credentials []Credential `json:"credentials,omitempty"`
    47  }