Bridge

<back to all web services

EnquiriesLive

Enquiries
The following routes are available for this service:
GET/Enquiries/Live
import java.math.*;
import java.util.*;
import net.servicestack.client.*;

public class dtos
{

    public static class EnquiriesLive
    {
        public Boolean JustMyEnquiries = null;
        
        public Boolean isJustMyEnquiries() { return JustMyEnquiries; }
        public EnquiriesLive setJustMyEnquiries(Boolean value) { this.JustMyEnquiries = value; return this; }
    }

    public static class LiveEnquiriesForContactAndEntityViewModel
    {
        public Boolean JustMyEnquiries = null;
        public Boolean CanViewCompanyEnquiries = null;
        public UUID EntityContactGuid = null;
        public Boolean ShowCreateNewEnquiryButton = null;
        public EntityContactViewModel EntityContact = null;
        public ArrayList<GetLiveEnquiriesForContactAndEntityViewModel> GetLiveEnquiriesForContactAndEntity = null;
        
        public Boolean isJustMyEnquiries() { return JustMyEnquiries; }
        public LiveEnquiriesForContactAndEntityViewModel setJustMyEnquiries(Boolean value) { this.JustMyEnquiries = value; return this; }
        public Boolean isCanViewCompanyEnquiries() { return CanViewCompanyEnquiries; }
        public LiveEnquiriesForContactAndEntityViewModel setCanViewCompanyEnquiries(Boolean value) { this.CanViewCompanyEnquiries = value; return this; }
        public UUID getEntityContactGuid() { return EntityContactGuid; }
        public LiveEnquiriesForContactAndEntityViewModel setEntityContactGuid(UUID value) { this.EntityContactGuid = value; return this; }
        public Boolean isShowCreateNewEnquiryButton() { return ShowCreateNewEnquiryButton; }
        public LiveEnquiriesForContactAndEntityViewModel setShowCreateNewEnquiryButton(Boolean value) { this.ShowCreateNewEnquiryButton = value; return this; }
        public EntityContactViewModel getEntityContact() { return EntityContact; }
        public LiveEnquiriesForContactAndEntityViewModel setEntityContact(EntityContactViewModel value) { this.EntityContact = value; return this; }
        public ArrayList<GetLiveEnquiriesForContactAndEntityViewModel> getGetLiveEnquiriesForContactAndEntity() { return GetLiveEnquiriesForContactAndEntity; }
        public LiveEnquiriesForContactAndEntityViewModel setGetLiveEnquiriesForContactAndEntity(ArrayList<GetLiveEnquiriesForContactAndEntityViewModel> value) { this.GetLiveEnquiriesForContactAndEntity = value; return this; }
    }

    public static class EntityContactViewModel
    {
        public Integer Id = null;
        public UUID Guid = null;
        public Integer EntityId = null;
        public String FirstName = null;
        public String LastName = null;
        public String Initials = null;
        public String Password = null;
        public String EmailAddress = null;
        public Boolean DarkMode = null;
        public EntityViewModel Entity = null;
        public Date LastActive = null;
        public UUID ImageGuid = null;
        public Integer DialingCodeCountryId = null;
        public String TelephoneNumber = null;
        public Boolean IsBridgeClient = null;
        public ArrayList<GetAllAccessLevelsForEntityContactIdViewModel> AccessLevels = null;
        
        public Integer getId() { return Id; }
        public EntityContactViewModel setId(Integer value) { this.Id = value; return this; }
        public UUID getGuid() { return Guid; }
        public EntityContactViewModel setGuid(UUID value) { this.Guid = value; return this; }
        public Integer getEntityId() { return EntityId; }
        public EntityContactViewModel setEntityId(Integer value) { this.EntityId = value; return this; }
        public String getFirstName() { return FirstName; }
        public EntityContactViewModel setFirstName(String value) { this.FirstName = value; return this; }
        public String getLastName() { return LastName; }
        public EntityContactViewModel setLastName(String value) { this.LastName = value; return this; }
        public String getInitials() { return Initials; }
        public EntityContactViewModel setInitials(String value) { this.Initials = value; return this; }
        public String getPassword() { return Password; }
        public EntityContactViewModel setPassword(String value) { this.Password = value; return this; }
        public String getEmailAddress() { return EmailAddress; }
        public EntityContactViewModel setEmailAddress(String value) { this.EmailAddress = value; return this; }
        public Boolean isDarkMode() { return DarkMode; }
        public EntityContactViewModel setDarkMode(Boolean value) { this.DarkMode = value; return this; }
        public EntityViewModel getEntity() { return Entity; }
        public EntityContactViewModel setEntity(EntityViewModel value) { this.Entity = value; return this; }
        public Date getLastActive() { return LastActive; }
        public EntityContactViewModel setLastActive(Date value) { this.LastActive = value; return this; }
        public UUID getImageGuid() { return ImageGuid; }
        public EntityContactViewModel setImageGuid(UUID value) { this.ImageGuid = value; return this; }
        public Integer getDialingCodeCountryId() { return DialingCodeCountryId; }
        public EntityContactViewModel setDialingCodeCountryId(Integer value) { this.DialingCodeCountryId = value; return this; }
        public String getTelephoneNumber() { return TelephoneNumber; }
        public EntityContactViewModel setTelephoneNumber(String value) { this.TelephoneNumber = value; return this; }
        public Boolean getIsBridgeClient() { return IsBridgeClient; }
        public EntityContactViewModel setIsBridgeClient(Boolean value) { this.IsBridgeClient = value; return this; }
        public ArrayList<GetAllAccessLevelsForEntityContactIdViewModel> getAccessLevels() { return AccessLevels; }
        public EntityContactViewModel setAccessLevels(ArrayList<GetAllAccessLevelsForEntityContactIdViewModel> value) { this.AccessLevels = value; return this; }
    }

    public static class EntityViewModel
    {
        public Integer Id = null;
        public UUID Guid = null;
        public String Type = null;
        public String Name = null;
        public Boolean SuperTrader = null;
        public String CompanyDomain = null;
        public Integer KYCStartedBy = null;
        public Integer KYCCompletedBy = null;
        public String ETSMOHAAccount = null;
        
        public Integer getId() { return Id; }
        public EntityViewModel setId(Integer value) { this.Id = value; return this; }
        public UUID getGuid() { return Guid; }
        public EntityViewModel setGuid(UUID value) { this.Guid = value; return this; }
        public String getType() { return Type; }
        public EntityViewModel setType(String value) { this.Type = value; return this; }
        public String getName() { return Name; }
        public EntityViewModel setName(String value) { this.Name = value; return this; }
        public Boolean isSuperTrader() { return SuperTrader; }
        public EntityViewModel setSuperTrader(Boolean value) { this.SuperTrader = value; return this; }
        public String getCompanyDomain() { return CompanyDomain; }
        public EntityViewModel setCompanyDomain(String value) { this.CompanyDomain = value; return this; }
        public Integer getKycStartedBy() { return KYCStartedBy; }
        public EntityViewModel setKycStartedBy(Integer value) { this.KYCStartedBy = value; return this; }
        public Integer getKycCompletedBy() { return KYCCompletedBy; }
        public EntityViewModel setKycCompletedBy(Integer value) { this.KYCCompletedBy = value; return this; }
        public String getEtsmohaAccount() { return ETSMOHAAccount; }
        public EntityViewModel setEtsmohaAccount(String value) { this.ETSMOHAAccount = value; return this; }
    }

    public static class GetAllAccessLevelsForEntityContactIdViewModel
    {
        public Integer Id = null;
        public Boolean Allowed = null;
        public String Name = null;
        public String Description = null;
        public String PrettyText = null;
        
        public Integer getId() { return Id; }
        public GetAllAccessLevelsForEntityContactIdViewModel setId(Integer value) { this.Id = value; return this; }
        public Boolean isAllowed() { return Allowed; }
        public GetAllAccessLevelsForEntityContactIdViewModel setAllowed(Boolean value) { this.Allowed = value; return this; }
        public String getName() { return Name; }
        public GetAllAccessLevelsForEntityContactIdViewModel setName(String value) { this.Name = value; return this; }
        public String getDescription() { return Description; }
        public GetAllAccessLevelsForEntityContactIdViewModel setDescription(String value) { this.Description = value; return this; }
        public String getPrettyText() { return PrettyText; }
        public GetAllAccessLevelsForEntityContactIdViewModel setPrettyText(String value) { this.PrettyText = value; return this; }
    }

    public static class GetLiveEnquiriesForContactAndEntityViewModel
    {
        public Integer Id = null;
        public UUID Guid = null;
        public byte[] FlagRound = null;
        public String CountryName = null;
        public String PortName = null;
        public Double Latitude = null;
        public Double Longitude = null;
        public String VesselName = null;
        public Integer IMONumber = null;
        public String DeliveryDate = null;
        public String Companies = null;
        public ArrayList<GetLiveEnquiriesForContactAndEntityCompaniesListViewModel> GetLiveEnquiriesForContactAndEntityCompaniesList = null;
        public ArrayList<GetLiveEnquiriesForContactAndEntityBeingWorkedOnByListViewModel> GetLiveEnquiriesForContactAndEntityBeingWorkedOnByList = null;
        public ArrayList<GetEnquiryChatListForContactIdViewModel> GetEnquiryChatListForContactId = null;
        public ArrayList<GetLiveEnquiriesForContactAndEntityVolumeDescriptionViewModel> GetLiveEnquiriesForContactAndEntityVolumeDescription = null;
        
        public Integer getId() { return Id; }
        public GetLiveEnquiriesForContactAndEntityViewModel setId(Integer value) { this.Id = value; return this; }
        public UUID getGuid() { return Guid; }
        public GetLiveEnquiriesForContactAndEntityViewModel setGuid(UUID value) { this.Guid = value; return this; }
        public byte[] getFlagRound() { return FlagRound; }
        public GetLiveEnquiriesForContactAndEntityViewModel setFlagRound(byte[] value) { this.FlagRound = value; return this; }
        public String getCountryName() { return CountryName; }
        public GetLiveEnquiriesForContactAndEntityViewModel setCountryName(String value) { this.CountryName = value; return this; }
        public String getPortName() { return PortName; }
        public GetLiveEnquiriesForContactAndEntityViewModel setPortName(String value) { this.PortName = value; return this; }
        public Double getLatitude() { return Latitude; }
        public GetLiveEnquiriesForContactAndEntityViewModel setLatitude(Double value) { this.Latitude = value; return this; }
        public Double getLongitude() { return Longitude; }
        public GetLiveEnquiriesForContactAndEntityViewModel setLongitude(Double value) { this.Longitude = value; return this; }
        public String getVesselName() { return VesselName; }
        public GetLiveEnquiriesForContactAndEntityViewModel setVesselName(String value) { this.VesselName = value; return this; }
        public Integer getImoNumber() { return IMONumber; }
        public GetLiveEnquiriesForContactAndEntityViewModel setImoNumber(Integer value) { this.IMONumber = value; return this; }
        public String getDeliveryDate() { return DeliveryDate; }
        public GetLiveEnquiriesForContactAndEntityViewModel setDeliveryDate(String value) { this.DeliveryDate = value; return this; }
        public String getCompanies() { return Companies; }
        public GetLiveEnquiriesForContactAndEntityViewModel setCompanies(String value) { this.Companies = value; return this; }
        public ArrayList<GetLiveEnquiriesForContactAndEntityCompaniesListViewModel> getGetLiveEnquiriesForContactAndEntityCompaniesList() { return GetLiveEnquiriesForContactAndEntityCompaniesList; }
        public GetLiveEnquiriesForContactAndEntityViewModel setGetLiveEnquiriesForContactAndEntityCompaniesList(ArrayList<GetLiveEnquiriesForContactAndEntityCompaniesListViewModel> value) { this.GetLiveEnquiriesForContactAndEntityCompaniesList = value; return this; }
        public ArrayList<GetLiveEnquiriesForContactAndEntityBeingWorkedOnByListViewModel> getGetLiveEnquiriesForContactAndEntityBeingWorkedOnByList() { return GetLiveEnquiriesForContactAndEntityBeingWorkedOnByList; }
        public GetLiveEnquiriesForContactAndEntityViewModel setGetLiveEnquiriesForContactAndEntityBeingWorkedOnByList(ArrayList<GetLiveEnquiriesForContactAndEntityBeingWorkedOnByListViewModel> value) { this.GetLiveEnquiriesForContactAndEntityBeingWorkedOnByList = value; return this; }
        public ArrayList<GetEnquiryChatListForContactIdViewModel> getGetEnquiryChatListForContactId() { return GetEnquiryChatListForContactId; }
        public GetLiveEnquiriesForContactAndEntityViewModel setGetEnquiryChatListForContactId(ArrayList<GetEnquiryChatListForContactIdViewModel> value) { this.GetEnquiryChatListForContactId = value; return this; }
        public ArrayList<GetLiveEnquiriesForContactAndEntityVolumeDescriptionViewModel> getGetLiveEnquiriesForContactAndEntityVolumeDescription() { return GetLiveEnquiriesForContactAndEntityVolumeDescription; }
        public GetLiveEnquiriesForContactAndEntityViewModel setGetLiveEnquiriesForContactAndEntityVolumeDescription(ArrayList<GetLiveEnquiriesForContactAndEntityVolumeDescriptionViewModel> value) { this.GetLiveEnquiriesForContactAndEntityVolumeDescription = value; return this; }
    }

    public static class GetLiveEnquiriesForContactAndEntityCompaniesListViewModel
    {
        public String CompanyName = null;
        public UUID ChatGuid = null;
        public UUID EntityContactGuid = null;
        public UUID EntityContactImageGuid = null;
        public String EntityContactName = null;
        public Integer UnreadMessagesForEntityContact = null;
        
        public String getCompanyName() { return CompanyName; }
        public GetLiveEnquiriesForContactAndEntityCompaniesListViewModel setCompanyName(String value) { this.CompanyName = value; return this; }
        public UUID getChatGuid() { return ChatGuid; }
        public GetLiveEnquiriesForContactAndEntityCompaniesListViewModel setChatGuid(UUID value) { this.ChatGuid = value; return this; }
        public UUID getEntityContactGuid() { return EntityContactGuid; }
        public GetLiveEnquiriesForContactAndEntityCompaniesListViewModel setEntityContactGuid(UUID value) { this.EntityContactGuid = value; return this; }
        public UUID getEntityContactImageGuid() { return EntityContactImageGuid; }
        public GetLiveEnquiriesForContactAndEntityCompaniesListViewModel setEntityContactImageGuid(UUID value) { this.EntityContactImageGuid = value; return this; }
        public String getEntityContactName() { return EntityContactName; }
        public GetLiveEnquiriesForContactAndEntityCompaniesListViewModel setEntityContactName(String value) { this.EntityContactName = value; return this; }
        public Integer getUnreadMessagesForEntityContact() { return UnreadMessagesForEntityContact; }
        public GetLiveEnquiriesForContactAndEntityCompaniesListViewModel setUnreadMessagesForEntityContact(Integer value) { this.UnreadMessagesForEntityContact = value; return this; }
    }

    public static class GetLiveEnquiriesForContactAndEntityBeingWorkedOnByListViewModel
    {
        public String HandlingEnquiryName = null;
        
        public String getHandlingEnquiryName() { return HandlingEnquiryName; }
        public GetLiveEnquiriesForContactAndEntityBeingWorkedOnByListViewModel setHandlingEnquiryName(String value) { this.HandlingEnquiryName = value; return this; }
    }

    public static class GetEnquiryChatListForContactIdViewModel
    {
        public Integer Id = null;
        public UUID Guid = null;
        public UUID ChatGuid = null;
        public Integer EntityId = null;
        public String EntityName = null;
        public Integer EntityContactId = null;
        public String EntityContactFirstName = null;
        public String EntityContactLastName = null;
        public String EntityContactName = null;
        public String EntityContactRoleInChat = null;
        public Integer ChattingWithEntityId = null;
        public String ChattingWithEntityName = null;
        public Integer ChattingWithEntityContactId = null;
        public String ChattingWithEntityContactFirstName = null;
        public String ChattingWithEntityContactLastName = null;
        public String ChattingWithEntityContactName = null;
        public String ChattingWithEntityContactNameAndEntity = null;
        public String ChattingWithEntityContactRoleInChat = null;
        public Integer UnreadMessagesForEntityContact = null;
        public String LastMessageDateTime = null;
        public String LastMessageText = null;
        public Integer ChatId = null;
        public Boolean LastMessageWasFromMe = null;
        public Boolean LastMessageDelivered = null;
        public Boolean LastMessageRead = null;
        public UUID ChattingWithEntityContactGuid = null;
        public Integer DealRecapCode = null;
        public String BannerText = null;
        public UUID ChattingWithEntityContactImageGuid = null;
        
        public Integer getId() { return Id; }
        public GetEnquiryChatListForContactIdViewModel setId(Integer value) { this.Id = value; return this; }
        public UUID getGuid() { return Guid; }
        public GetEnquiryChatListForContactIdViewModel setGuid(UUID value) { this.Guid = value; return this; }
        public UUID getChatGuid() { return ChatGuid; }
        public GetEnquiryChatListForContactIdViewModel setChatGuid(UUID value) { this.ChatGuid = value; return this; }
        public Integer getEntityId() { return EntityId; }
        public GetEnquiryChatListForContactIdViewModel setEntityId(Integer value) { this.EntityId = value; return this; }
        public String getEntityName() { return EntityName; }
        public GetEnquiryChatListForContactIdViewModel setEntityName(String value) { this.EntityName = value; return this; }
        public Integer getEntityContactId() { return EntityContactId; }
        public GetEnquiryChatListForContactIdViewModel setEntityContactId(Integer value) { this.EntityContactId = value; return this; }
        public String getEntityContactFirstName() { return EntityContactFirstName; }
        public GetEnquiryChatListForContactIdViewModel setEntityContactFirstName(String value) { this.EntityContactFirstName = value; return this; }
        public String getEntityContactLastName() { return EntityContactLastName; }
        public GetEnquiryChatListForContactIdViewModel setEntityContactLastName(String value) { this.EntityContactLastName = value; return this; }
        public String getEntityContactName() { return EntityContactName; }
        public GetEnquiryChatListForContactIdViewModel setEntityContactName(String value) { this.EntityContactName = value; return this; }
        public String getEntityContactRoleInChat() { return EntityContactRoleInChat; }
        public GetEnquiryChatListForContactIdViewModel setEntityContactRoleInChat(String value) { this.EntityContactRoleInChat = value; return this; }
        public Integer getChattingWithEntityId() { return ChattingWithEntityId; }
        public GetEnquiryChatListForContactIdViewModel setChattingWithEntityId(Integer value) { this.ChattingWithEntityId = value; return this; }
        public String getChattingWithEntityName() { return ChattingWithEntityName; }
        public GetEnquiryChatListForContactIdViewModel setChattingWithEntityName(String value) { this.ChattingWithEntityName = value; return this; }
        public Integer getChattingWithEntityContactId() { return ChattingWithEntityContactId; }
        public GetEnquiryChatListForContactIdViewModel setChattingWithEntityContactId(Integer value) { this.ChattingWithEntityContactId = value; return this; }
        public String getChattingWithEntityContactFirstName() { return ChattingWithEntityContactFirstName; }
        public GetEnquiryChatListForContactIdViewModel setChattingWithEntityContactFirstName(String value) { this.ChattingWithEntityContactFirstName = value; return this; }
        public String getChattingWithEntityContactLastName() { return ChattingWithEntityContactLastName; }
        public GetEnquiryChatListForContactIdViewModel setChattingWithEntityContactLastName(String value) { this.ChattingWithEntityContactLastName = value; return this; }
        public String getChattingWithEntityContactName() { return ChattingWithEntityContactName; }
        public GetEnquiryChatListForContactIdViewModel setChattingWithEntityContactName(String value) { this.ChattingWithEntityContactName = value; return this; }
        public String getChattingWithEntityContactNameAndEntity() { return ChattingWithEntityContactNameAndEntity; }
        public GetEnquiryChatListForContactIdViewModel setChattingWithEntityContactNameAndEntity(String value) { this.ChattingWithEntityContactNameAndEntity = value; return this; }
        public String getChattingWithEntityContactRoleInChat() { return ChattingWithEntityContactRoleInChat; }
        public GetEnquiryChatListForContactIdViewModel setChattingWithEntityContactRoleInChat(String value) { this.ChattingWithEntityContactRoleInChat = value; return this; }
        public Integer getUnreadMessagesForEntityContact() { return UnreadMessagesForEntityContact; }
        public GetEnquiryChatListForContactIdViewModel setUnreadMessagesForEntityContact(Integer value) { this.UnreadMessagesForEntityContact = value; return this; }
        public String getLastMessageDateTime() { return LastMessageDateTime; }
        public GetEnquiryChatListForContactIdViewModel setLastMessageDateTime(String value) { this.LastMessageDateTime = value; return this; }
        public String getLastMessageText() { return LastMessageText; }
        public GetEnquiryChatListForContactIdViewModel setLastMessageText(String value) { this.LastMessageText = value; return this; }
        public Integer getChatId() { return ChatId; }
        public GetEnquiryChatListForContactIdViewModel setChatId(Integer value) { this.ChatId = value; return this; }
        public Boolean isLastMessageWasFromMe() { return LastMessageWasFromMe; }
        public GetEnquiryChatListForContactIdViewModel setLastMessageWasFromMe(Boolean value) { this.LastMessageWasFromMe = value; return this; }
        public Boolean isLastMessageDelivered() { return LastMessageDelivered; }
        public GetEnquiryChatListForContactIdViewModel setLastMessageDelivered(Boolean value) { this.LastMessageDelivered = value; return this; }
        public Boolean isLastMessageRead() { return LastMessageRead; }
        public GetEnquiryChatListForContactIdViewModel setLastMessageRead(Boolean value) { this.LastMessageRead = value; return this; }
        public UUID getChattingWithEntityContactGuid() { return ChattingWithEntityContactGuid; }
        public GetEnquiryChatListForContactIdViewModel setChattingWithEntityContactGuid(UUID value) { this.ChattingWithEntityContactGuid = value; return this; }
        public Integer getDealRecapCode() { return DealRecapCode; }
        public GetEnquiryChatListForContactIdViewModel setDealRecapCode(Integer value) { this.DealRecapCode = value; return this; }
        public String getBannerText() { return BannerText; }
        public GetEnquiryChatListForContactIdViewModel setBannerText(String value) { this.BannerText = value; return this; }
        public UUID getChattingWithEntityContactImageGuid() { return ChattingWithEntityContactImageGuid; }
        public GetEnquiryChatListForContactIdViewModel setChattingWithEntityContactImageGuid(UUID value) { this.ChattingWithEntityContactImageGuid = value; return this; }
    }

    public static class GetLiveEnquiriesForContactAndEntityVolumeDescriptionViewModel
    {
        public String VolDescription = null;
        
        public String getVolDescription() { return VolDescription; }
        public GetLiveEnquiriesForContactAndEntityVolumeDescriptionViewModel setVolDescription(String value) { this.VolDescription = value; return this; }
    }

}

Java EnquiriesLive DTOs

To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv

HTTP + JSV

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

GET /Enquiries/Live HTTP/1.1 
Host: internal.thebunkerbridge.com 
Accept: text/jsv
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length

{
	JustMyEnquiries: False,
	CanViewCompanyEnquiries: False,
	EntityContactGuid: 00000000000000000000000000000000,
	ShowCreateNewEnquiryButton: False,
	EntityContact: 
	{
		Id: 0,
		Guid: 00000000000000000000000000000000,
		EntityId: 0,
		FirstName: String,
		LastName: String,
		Initials: String,
		Password: String,
		EmailAddress: String,
		DarkMode: False,
		Entity: 
		{
			Id: 0,
			Guid: 00000000000000000000000000000000,
			Type: String,
			Name: String,
			SuperTrader: False,
			CompanyDomain: String,
			KYCStartedBy: 0,
			KYCCompletedBy: 0,
			ETSMOHAAccount: String
		},
		LastActive: 0001-01-01,
		ImageGuid: 00000000000000000000000000000000,
		DialingCodeCountryId: 0,
		TelephoneNumber: String,
		IsBridgeClient: False,
		AccessLevels: 
		[
			{
				Id: 0,
				Allowed: False,
				Name: String,
				Description: String,
				PrettyText: String
			}
		]
	},
	GetLiveEnquiriesForContactAndEntity: 
	[
		{
			Id: 0,
			Guid: 00000000000000000000000000000000,
			FlagRound: AA==,
			CountryName: String,
			PortName: String,
			Latitude: 0,
			Longitude: 0,
			VesselName: String,
			IMONumber: 0,
			DeliveryDate: String,
			Companies: String,
			GetLiveEnquiriesForContactAndEntityCompaniesList: 
			[
				{
					CompanyName: String,
					ChatGuid: 00000000000000000000000000000000,
					EntityContactGuid: 00000000000000000000000000000000,
					EntityContactImageGuid: 00000000000000000000000000000000,
					EntityContactName: String,
					UnreadMessagesForEntityContact: 0
				}
			],
			GetLiveEnquiriesForContactAndEntityBeingWorkedOnByList: 
			[
				{
					HandlingEnquiryName: String
				}
			],
			GetEnquiryChatListForContactId: 
			[
				{
					Id: 0,
					Guid: 00000000000000000000000000000000,
					ChatGuid: 00000000000000000000000000000000,
					EntityId: 0,
					EntityName: String,
					EntityContactId: 0,
					EntityContactFirstName: String,
					EntityContactLastName: String,
					EntityContactName: String,
					EntityContactRoleInChat: String,
					ChattingWithEntityId: 0,
					ChattingWithEntityName: String,
					ChattingWithEntityContactId: 0,
					ChattingWithEntityContactFirstName: String,
					ChattingWithEntityContactLastName: String,
					ChattingWithEntityContactName: String,
					ChattingWithEntityContactNameAndEntity: String,
					ChattingWithEntityContactRoleInChat: String,
					UnreadMessagesForEntityContact: 0,
					LastMessageDateTime: String,
					LastMessageText: String,
					ChatId: 0,
					LastMessageWasFromMe: False,
					LastMessageDelivered: False,
					LastMessageRead: False,
					ChattingWithEntityContactGuid: 00000000000000000000000000000000,
					DealRecapCode: 0,
					BannerText: String,
					ChattingWithEntityContactImageGuid: 00000000000000000000000000000000
				}
			],
			GetLiveEnquiriesForContactAndEntityVolumeDescription: 
			[
				{
					VolDescription: String
				}
			]
		}
	]
}