GladlyUser

public struct GladlyUser : Codable, Equatable

Describes the user of Gladly

  • The id of the user within Gladly

    Declaration

    Swift

    public var gladlyCustomerId: String?
  • The users email address

    Declaration

    Swift

    public var email: String?
  • The users name, this is an optional field.

    Declaration

    Swift

    public var name: String?
  • Declaration

    Swift

    public init(email: String, name: String?)

    Parameters

    email

    The email address of User.

    name

    The name of the User.