Module User.AttributeSource

Sourcetype raw_attribute = {
  1. name : string;
  2. value : string option;
}
Sourcetype t = [
  1. | `Unknown of raw_attribute
  2. | `Custom of raw_attribute
  3. | `Gender of string
  4. | `Family_name of string
  5. | `Locale of string
  6. | `Middle_name of string option
  7. | `Nickname of string
  8. | `Profile of string option
  9. | `Website of string option
  10. | `Picture of string
  11. | `Email of string
  12. | `Name of string
  13. | `Updated_at of string
  14. | `Preferred_user_name of string option
  15. | `Given_name of string
]