ProviderContactDto Data Type

The Class ProviderContactDto.

Implemented Interfaces
Serializable
Properties
name data type constraints description
firstName string   The first name.
id number   The id.
lastName string   The last name.
auditableField array of AuditableFieldDto  
email string   The email.
phone string   The phone.
code string required The code
mobile string   The mobile.
fax string   The fax.
genericMail string   The generic mail.
description string   The description
addressDto AddressDto   The address dto.
updatedCode string   The updated code.

Example

{
  "firstName" : "...",
  "id" : 12345,
  "lastName" : "...",
  "auditableField" : [ {
    "entityClass" : "...",
    "fieldName" : "...",
    "id" : 12345,
    "changeOrigin" : "...",
    "auditableField" : [ { }, { } ],
    "originName" : "...",
    "code" : "...",
    "previousState" : "...",
    "currentState" : "...",
    "description" : "...",
    "created" : "...",
    "updatedCode" : "...",
    "actor" : "..."
  }, {
    "entityClass" : "...",
    "fieldName" : "...",
    "id" : 12345,
    "changeOrigin" : "...",
    "auditableField" : [ { }, { } ],
    "originName" : "...",
    "code" : "...",
    "previousState" : "...",
    "currentState" : "...",
    "description" : "...",
    "created" : "...",
    "updatedCode" : "...",
    "actor" : "..."
  } ],
  "email" : "...",
  "phone" : "...",
  "code" : "...",
  "mobile" : "...",
  "fax" : "...",
  "genericMail" : "...",
  "description" : "...",
  "addressDto" : {
    "address1" : "...",
    "address2" : "...",
    "address3" : "...",
    "address4" : "...",
    "address5" : "...",
    "zipCode" : "...",
    "city" : "...",
    "country" : "...",
    "state" : "..."
  },
  "updatedCode" : "..."
}