Skip to main content

ContactChange

A conversation was reassigned to another contact.

type ContactChange implements Timestamped {
createdAt: DateTime!
from: Contact
id: ID!
to: Contact
updatedAt: DateTime!
}

Fields

ContactChange.createdAt ● DateTime! non-null scalar common

The date and time that the object was created.

ContactChange.from ● Contact object common

The contact that the conversation was previously assigned to.

ContactChange.id ● ID! non-null scalar common

ContactChange.to ● Contact object common

The contact that the conversation is currently assigned to.

ContactChange.updatedAt ● DateTime! non-null scalar common

The date and time that the object was last updated.

Interfaces

Timestamped interface common

An object with timestamp fields for when it was created and last updated.

Implemented by

ChangeTypeUnion union