ExtendedStitchUserProfile

public protocol ExtendedStitchUserProfile

A protocol containing the fields returned by the Stitch client API in the data field of a user profile request.

  • The full name of the user.

    Declaration

    Swift

    var name: String? { get }
  • The email address of the user.

    Declaration

    Swift

    var email: String? { get }
  • A URL to the user’s profile picture.

    Declaration

    Swift

    var pictureURL: String? { get }
  • The first name of the user.

    Declaration

    Swift

    var firstName: String? { get }
  • The last name of the user.

    Declaration

    Swift

    var lastName: String? { get }
  • The gender of the user.

    Declaration

    Swift

    var gender: String? { get }
  • The birthdate of the user.

    Declaration

    Swift

    var birthday: String? { get }
  • The minimum age of the user.

    Declaration

    Swift

    var minAge: Int? { get }
  • The maximum age of the user.

    Declaration

    Swift

    var maxAge: Int? { get }