saml.go 142 B

1234567891011
  1. package types
  2. type IDPType string
  3. const (
  4. IDPTypeOkta IDPType = "okta"
  5. )
  6. type ValidateSAMLRequest struct {
  7. Email string `json:"email"`
  8. }