MDAccountInfo

public struct MDAccountInfo : Encodable

Structure to store information when creating an account

  • The username to use

    Note

    Must be between 1 and 64 characters

    Declaration

    Swift

    public let username: String
  • The password to use

    Note

    Must be between 8 and 1024 characters

    Declaration

    Swift

    public let password: String
  • The email address to use

    Note

    The address will be verified

    Declaration

    Swift

    public let email: String
  • Undocumented

    Declaration

    Swift

    public init(username: String, password: String, email: String)