CustomerContact

public struct CustomerContact : Decodable

Information about a customer

  • Their title. e.g. “Mr” or “Mrs”

    Declaration

    Swift

    public let title: String?
  • Their first name

    Declaration

    Swift

    public let firstName: String
  • Their last name

    Declaration

    Swift

    public let lastName: String
  • Their email address

    Declaration

    Swift

    public let email: String?
  • Their phone number

    Declaration

    Swift

    public let phone: String?