| Requires any of the roles: | Worker, Agent, Administrator |
| GET | /v1/Smartsheets/{AgentID} | ||
|---|---|---|---|
| GET | /v1/Smartsheets | ||
| GET | /v1/Smartsheets/{AgentID}/{SheetType} |
import java.math.*;
import java.util.*;
import java.io.InputStream;
import net.servicestack.client.*;
public class dtos
{
public static class SmartsheetsRequest
{
public Integer AgentID = null;
public String SheetType = null;
public Integer getAgentID() { return AgentID; }
public SmartsheetsRequest setAgentID(Integer value) { this.AgentID = value; return this; }
public String getSheetType() { return SheetType; }
public SmartsheetsRequest setSheetType(String value) { this.SheetType = value; return this; }
}
public static class SmartsheetsResponse
{
public ResponseStatus ResponseStatus = null;
public ArrayList<SmartsheetsLife> Life = new ArrayList<SmartsheetsLife>();
public ArrayList<SmartsheetsFlow> Flow = new ArrayList<SmartsheetsFlow>();
public ArrayList<SmartsheetsTransfer> Transfer = new ArrayList<SmartsheetsTransfer>();
public ArrayList<SmartsheetsIssuedClosed> IssuedClosed = new ArrayList<SmartsheetsIssuedClosed>();
public ResponseStatus getResponseStatus() { return ResponseStatus; }
public SmartsheetsResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; }
public ArrayList<SmartsheetsLife> getLife() { return Life; }
public SmartsheetsResponse setLife(ArrayList<SmartsheetsLife> value) { this.Life = value; return this; }
public ArrayList<SmartsheetsFlow> getFlow() { return Flow; }
public SmartsheetsResponse setFlow(ArrayList<SmartsheetsFlow> value) { this.Flow = value; return this; }
public ArrayList<SmartsheetsTransfer> getTransfer() { return Transfer; }
public SmartsheetsResponse setTransfer(ArrayList<SmartsheetsTransfer> value) { this.Transfer = value; return this; }
public ArrayList<SmartsheetsIssuedClosed> getIssuedClosed() { return IssuedClosed; }
public SmartsheetsResponse setIssuedClosed(ArrayList<SmartsheetsIssuedClosed> value) { this.IssuedClosed = value; return this; }
}
public static class SmartsheetsLife
{
public Integer ID = null;
public String FirstName = null;
public String LastName = null;
public String PolicyNumber = null;
public String PolicyType = null;
public String CPT = null;
public String AppDate = null;
public String AgentName = null;
public Integer AgentID = null;
public String Phase = null;
public String Notes = null;
public String TransferAmount = null;
public String AccountNumber = null;
public Boolean Deleted = null;
public String ModifiedBy = null;
public Boolean Flagged = null;
public String TransactionId = null;
public String FaceValue = null;
public Boolean HasChange = null;
public Boolean HasConversation = null;
public Boolean HasAgentMsg = null;
public Boolean HasAdminMsg = null;
public ArrayList<Attachment> Attachment = new ArrayList<Attachment>();
public ArrayList<Reminder> Reminder = new ArrayList<Reminder>();
public String Agents = null;
public Boolean HasOCR = null;
public UUID PolicyAssociateId = null;
public Boolean HasRequiredDocuments = null;
public String Phone = null;
public String EmailAddress = null;
public String ApprovedDate = null;
public String ApprovedBy = null;
public Integer getId() { return ID; }
public SmartsheetsLife setId(Integer value) { this.ID = value; return this; }
public String getFirstName() { return FirstName; }
public SmartsheetsLife setFirstName(String value) { this.FirstName = value; return this; }
public String getLastName() { return LastName; }
public SmartsheetsLife setLastName(String value) { this.LastName = value; return this; }
public String getPolicyNumber() { return PolicyNumber; }
public SmartsheetsLife setPolicyNumber(String value) { this.PolicyNumber = value; return this; }
public String getPolicyType() { return PolicyType; }
public SmartsheetsLife setPolicyType(String value) { this.PolicyType = value; return this; }
public String getCpt() { return CPT; }
public SmartsheetsLife setCpt(String value) { this.CPT = value; return this; }
public String getAppDate() { return AppDate; }
public SmartsheetsLife setAppDate(String value) { this.AppDate = value; return this; }
public String getAgentName() { return AgentName; }
public SmartsheetsLife setAgentName(String value) { this.AgentName = value; return this; }
public Integer getAgentID() { return AgentID; }
public SmartsheetsLife setAgentID(Integer value) { this.AgentID = value; return this; }
public String getPhase() { return Phase; }
public SmartsheetsLife setPhase(String value) { this.Phase = value; return this; }
public String getNotes() { return Notes; }
public SmartsheetsLife setNotes(String value) { this.Notes = value; return this; }
public String getTransferAmount() { return TransferAmount; }
public SmartsheetsLife setTransferAmount(String value) { this.TransferAmount = value; return this; }
public String getAccountNumber() { return AccountNumber; }
public SmartsheetsLife setAccountNumber(String value) { this.AccountNumber = value; return this; }
public Boolean isDeleted() { return Deleted; }
public SmartsheetsLife setDeleted(Boolean value) { this.Deleted = value; return this; }
public String getModifiedBy() { return ModifiedBy; }
public SmartsheetsLife setModifiedBy(String value) { this.ModifiedBy = value; return this; }
public Boolean isFlagged() { return Flagged; }
public SmartsheetsLife setFlagged(Boolean value) { this.Flagged = value; return this; }
public String getTransactionId() { return TransactionId; }
public SmartsheetsLife setTransactionId(String value) { this.TransactionId = value; return this; }
public String getFaceValue() { return FaceValue; }
public SmartsheetsLife setFaceValue(String value) { this.FaceValue = value; return this; }
public Boolean isHasChange() { return HasChange; }
public SmartsheetsLife setHasChange(Boolean value) { this.HasChange = value; return this; }
public Boolean isHasConversation() { return HasConversation; }
public SmartsheetsLife setHasConversation(Boolean value) { this.HasConversation = value; return this; }
public Boolean isHasAgentMsg() { return HasAgentMsg; }
public SmartsheetsLife setHasAgentMsg(Boolean value) { this.HasAgentMsg = value; return this; }
public Boolean isHasAdminMsg() { return HasAdminMsg; }
public SmartsheetsLife setHasAdminMsg(Boolean value) { this.HasAdminMsg = value; return this; }
public ArrayList<Attachment> getAttachment() { return Attachment; }
public SmartsheetsLife setAttachment(ArrayList<Attachment> value) { this.Attachment = value; return this; }
public ArrayList<Reminder> getReminder() { return Reminder; }
public SmartsheetsLife setReminder(ArrayList<Reminder> value) { this.Reminder = value; return this; }
public String getAgents() { return Agents; }
public SmartsheetsLife setAgents(String value) { this.Agents = value; return this; }
public Boolean isHasOCR() { return HasOCR; }
public SmartsheetsLife setHasOCR(Boolean value) { this.HasOCR = value; return this; }
public UUID getPolicyAssociateId() { return PolicyAssociateId; }
public SmartsheetsLife setPolicyAssociateId(UUID value) { this.PolicyAssociateId = value; return this; }
public Boolean isHasRequiredDocuments() { return HasRequiredDocuments; }
public SmartsheetsLife setHasRequiredDocuments(Boolean value) { this.HasRequiredDocuments = value; return this; }
public String getPhone() { return Phone; }
public SmartsheetsLife setPhone(String value) { this.Phone = value; return this; }
public String getEmailAddress() { return EmailAddress; }
public SmartsheetsLife setEmailAddress(String value) { this.EmailAddress = value; return this; }
public String getApprovedDate() { return ApprovedDate; }
public SmartsheetsLife setApprovedDate(String value) { this.ApprovedDate = value; return this; }
public String getApprovedBy() { return ApprovedBy; }
public SmartsheetsLife setApprovedBy(String value) { this.ApprovedBy = value; return this; }
}
public static class Attachment
{
public UUID AttachmentId = null;
public String TableName = null;
public String FieldName = null;
public Integer RecordId = null;
public String AttachmentName = null;
public String MimeType = null;
public byte[] AttachmentData = new byte[]{};
public Double FileSizeInKB = null;
public Date CreatedDate = null;
public String CreatedBy = null;
public Boolean NeedsOCR = null;
public Date OCRDate = null;
public Boolean IsSecurities = null;
public String AWSKey = null;
public String PresignedUrl = null;
public UUID getAttachmentId() { return AttachmentId; }
public Attachment setAttachmentId(UUID value) { this.AttachmentId = value; return this; }
public String getTableName() { return TableName; }
public Attachment setTableName(String value) { this.TableName = value; return this; }
public String getFieldName() { return FieldName; }
public Attachment setFieldName(String value) { this.FieldName = value; return this; }
public Integer getRecordId() { return RecordId; }
public Attachment setRecordId(Integer value) { this.RecordId = value; return this; }
public String getAttachmentName() { return AttachmentName; }
public Attachment setAttachmentName(String value) { this.AttachmentName = value; return this; }
public String getMimeType() { return MimeType; }
public Attachment setMimeType(String value) { this.MimeType = value; return this; }
public byte[] getAttachmentData() { return AttachmentData; }
public Attachment setAttachmentData(byte[] value) { this.AttachmentData = value; return this; }
public Double getFileSizeInKB() { return FileSizeInKB; }
public Attachment setFileSizeInKB(Double value) { this.FileSizeInKB = value; return this; }
public Date getCreatedDate() { return CreatedDate; }
public Attachment setCreatedDate(Date value) { this.CreatedDate = value; return this; }
public String getCreatedBy() { return CreatedBy; }
public Attachment setCreatedBy(String value) { this.CreatedBy = value; return this; }
public Boolean isNeedsOCR() { return NeedsOCR; }
public Attachment setNeedsOCR(Boolean value) { this.NeedsOCR = value; return this; }
public Date getOcrDate() { return OCRDate; }
public Attachment setOcrDate(Date value) { this.OCRDate = value; return this; }
public Boolean getIsSecurities() { return IsSecurities; }
public Attachment setIsSecurities(Boolean value) { this.IsSecurities = value; return this; }
public String getAwsKey() { return AWSKey; }
public Attachment setAwsKey(String value) { this.AWSKey = value; return this; }
public String getPresignedUrl() { return PresignedUrl; }
public Attachment setPresignedUrl(String value) { this.PresignedUrl = value; return this; }
}
public static class Reminder
{
public UUID ReminderId = null;
public String TableName = null;
public String FieldName = null;
public Integer RecordId = null;
public Date ReminderDate = null;
public String ReminderNote = null;
public Date CreatedDate = null;
public String CreatedBy = null;
public Date CompletedDate = null;
public UUID getReminderId() { return ReminderId; }
public Reminder setReminderId(UUID value) { this.ReminderId = value; return this; }
public String getTableName() { return TableName; }
public Reminder setTableName(String value) { this.TableName = value; return this; }
public String getFieldName() { return FieldName; }
public Reminder setFieldName(String value) { this.FieldName = value; return this; }
public Integer getRecordId() { return RecordId; }
public Reminder setRecordId(Integer value) { this.RecordId = value; return this; }
public Date getReminderDate() { return ReminderDate; }
public Reminder setReminderDate(Date value) { this.ReminderDate = value; return this; }
public String getReminderNote() { return ReminderNote; }
public Reminder setReminderNote(String value) { this.ReminderNote = value; return this; }
public Date getCreatedDate() { return CreatedDate; }
public Reminder setCreatedDate(Date value) { this.CreatedDate = value; return this; }
public String getCreatedBy() { return CreatedBy; }
public Reminder setCreatedBy(String value) { this.CreatedBy = value; return this; }
public Date getCompletedDate() { return CompletedDate; }
public Reminder setCompletedDate(Date value) { this.CompletedDate = value; return this; }
}
public static class SmartsheetsFlow
{
public Integer ID = null;
public String FirstName = null;
public String LastName = null;
public String PolicyNumber = null;
public String PolicyType = null;
public String AppDate = null;
public String AgentName = null;
public Integer AgentID = null;
public String SRAStartDate = null;
public String Phase = null;
public String ModalPremium = null;
public String Frequency = null;
public String AnnualPremium = null;
public String District = null;
public String SS = null;
public String Carrier = null;
public String Notes = null;
public String TPA = null;
public Boolean Flagged = null;
public Boolean Deleted = null;
public String ModifiedBy = null;
public String TransactionId = null;
public Boolean HasChange = null;
public Boolean HasConversation = null;
public Boolean HasAgentMsg = null;
public Boolean HasAdminMsg = null;
public ArrayList<Attachment> Attachment = new ArrayList<Attachment>();
public ArrayList<Reminder> Reminder = new ArrayList<Reminder>();
public String Agents = null;
public Boolean HasOCR = null;
public UUID PolicyAssociateId = null;
public Boolean HasRequiredDocuments = null;
public String Phone = null;
public String EmailAddress = null;
public String ApprovedDate = null;
public String ApprovedBy = null;
public Integer getId() { return ID; }
public SmartsheetsFlow setId(Integer value) { this.ID = value; return this; }
public String getFirstName() { return FirstName; }
public SmartsheetsFlow setFirstName(String value) { this.FirstName = value; return this; }
public String getLastName() { return LastName; }
public SmartsheetsFlow setLastName(String value) { this.LastName = value; return this; }
public String getPolicyNumber() { return PolicyNumber; }
public SmartsheetsFlow setPolicyNumber(String value) { this.PolicyNumber = value; return this; }
public String getPolicyType() { return PolicyType; }
public SmartsheetsFlow setPolicyType(String value) { this.PolicyType = value; return this; }
public String getAppDate() { return AppDate; }
public SmartsheetsFlow setAppDate(String value) { this.AppDate = value; return this; }
public String getAgentName() { return AgentName; }
public SmartsheetsFlow setAgentName(String value) { this.AgentName = value; return this; }
public Integer getAgentID() { return AgentID; }
public SmartsheetsFlow setAgentID(Integer value) { this.AgentID = value; return this; }
public String getSraStartDate() { return SRAStartDate; }
public SmartsheetsFlow setSraStartDate(String value) { this.SRAStartDate = value; return this; }
public String getPhase() { return Phase; }
public SmartsheetsFlow setPhase(String value) { this.Phase = value; return this; }
public String getModalPremium() { return ModalPremium; }
public SmartsheetsFlow setModalPremium(String value) { this.ModalPremium = value; return this; }
public String getFrequency() { return Frequency; }
public SmartsheetsFlow setFrequency(String value) { this.Frequency = value; return this; }
public String getAnnualPremium() { return AnnualPremium; }
public SmartsheetsFlow setAnnualPremium(String value) { this.AnnualPremium = value; return this; }
public String getDistrict() { return District; }
public SmartsheetsFlow setDistrict(String value) { this.District = value; return this; }
public String getSs() { return SS; }
public SmartsheetsFlow setSs(String value) { this.SS = value; return this; }
public String getCarrier() { return Carrier; }
public SmartsheetsFlow setCarrier(String value) { this.Carrier = value; return this; }
public String getNotes() { return Notes; }
public SmartsheetsFlow setNotes(String value) { this.Notes = value; return this; }
public String getTpa() { return TPA; }
public SmartsheetsFlow setTpa(String value) { this.TPA = value; return this; }
public Boolean isFlagged() { return Flagged; }
public SmartsheetsFlow setFlagged(Boolean value) { this.Flagged = value; return this; }
public Boolean isDeleted() { return Deleted; }
public SmartsheetsFlow setDeleted(Boolean value) { this.Deleted = value; return this; }
public String getModifiedBy() { return ModifiedBy; }
public SmartsheetsFlow setModifiedBy(String value) { this.ModifiedBy = value; return this; }
public String getTransactionId() { return TransactionId; }
public SmartsheetsFlow setTransactionId(String value) { this.TransactionId = value; return this; }
public Boolean isHasChange() { return HasChange; }
public SmartsheetsFlow setHasChange(Boolean value) { this.HasChange = value; return this; }
public Boolean isHasConversation() { return HasConversation; }
public SmartsheetsFlow setHasConversation(Boolean value) { this.HasConversation = value; return this; }
public Boolean isHasAgentMsg() { return HasAgentMsg; }
public SmartsheetsFlow setHasAgentMsg(Boolean value) { this.HasAgentMsg = value; return this; }
public Boolean isHasAdminMsg() { return HasAdminMsg; }
public SmartsheetsFlow setHasAdminMsg(Boolean value) { this.HasAdminMsg = value; return this; }
public ArrayList<Attachment> getAttachment() { return Attachment; }
public SmartsheetsFlow setAttachment(ArrayList<Attachment> value) { this.Attachment = value; return this; }
public ArrayList<Reminder> getReminder() { return Reminder; }
public SmartsheetsFlow setReminder(ArrayList<Reminder> value) { this.Reminder = value; return this; }
public String getAgents() { return Agents; }
public SmartsheetsFlow setAgents(String value) { this.Agents = value; return this; }
public Boolean isHasOCR() { return HasOCR; }
public SmartsheetsFlow setHasOCR(Boolean value) { this.HasOCR = value; return this; }
public UUID getPolicyAssociateId() { return PolicyAssociateId; }
public SmartsheetsFlow setPolicyAssociateId(UUID value) { this.PolicyAssociateId = value; return this; }
public Boolean isHasRequiredDocuments() { return HasRequiredDocuments; }
public SmartsheetsFlow setHasRequiredDocuments(Boolean value) { this.HasRequiredDocuments = value; return this; }
public String getPhone() { return Phone; }
public SmartsheetsFlow setPhone(String value) { this.Phone = value; return this; }
public String getEmailAddress() { return EmailAddress; }
public SmartsheetsFlow setEmailAddress(String value) { this.EmailAddress = value; return this; }
public String getApprovedDate() { return ApprovedDate; }
public SmartsheetsFlow setApprovedDate(String value) { this.ApprovedDate = value; return this; }
public String getApprovedBy() { return ApprovedBy; }
public SmartsheetsFlow setApprovedBy(String value) { this.ApprovedBy = value; return this; }
}
public static class SmartsheetsTransfer
{
public Integer ID = null;
public Boolean Flagged = null;
public String Phase = null;
public String FirstName = null;
public String LastName = null;
public String PolicyNumber = null;
public String PolicyType = null;
public String AppDate = null;
public String AgentName = null;
public Integer AgentID = null;
public String RegionalOffice = null;
public String TransferAmount = null;
public String TransferringCompany = null;
public String AccountNumber = null;
public String SS = null;
public String Notes = null;
public Boolean Deleted = null;
public String ModifiedBy = null;
public String TransactionId = null;
public Boolean HasChange = null;
public Boolean HasConversation = null;
public Boolean HasAgentMsg = null;
public Boolean HasAdminMsg = null;
public ArrayList<Attachment> Attachment = new ArrayList<Attachment>();
public ArrayList<Reminder> Reminder = new ArrayList<Reminder>();
public String Agents = null;
public Boolean HasOCR = null;
public UUID PolicyAssociateId = null;
public Boolean HasRequiredDocuments = null;
public String Phone = null;
public String EmailAddress = null;
public String ApprovedDate = null;
public String ApprovedBy = null;
public Integer getId() { return ID; }
public SmartsheetsTransfer setId(Integer value) { this.ID = value; return this; }
public Boolean isFlagged() { return Flagged; }
public SmartsheetsTransfer setFlagged(Boolean value) { this.Flagged = value; return this; }
public String getPhase() { return Phase; }
public SmartsheetsTransfer setPhase(String value) { this.Phase = value; return this; }
public String getFirstName() { return FirstName; }
public SmartsheetsTransfer setFirstName(String value) { this.FirstName = value; return this; }
public String getLastName() { return LastName; }
public SmartsheetsTransfer setLastName(String value) { this.LastName = value; return this; }
public String getPolicyNumber() { return PolicyNumber; }
public SmartsheetsTransfer setPolicyNumber(String value) { this.PolicyNumber = value; return this; }
public String getPolicyType() { return PolicyType; }
public SmartsheetsTransfer setPolicyType(String value) { this.PolicyType = value; return this; }
public String getAppDate() { return AppDate; }
public SmartsheetsTransfer setAppDate(String value) { this.AppDate = value; return this; }
public String getAgentName() { return AgentName; }
public SmartsheetsTransfer setAgentName(String value) { this.AgentName = value; return this; }
public Integer getAgentID() { return AgentID; }
public SmartsheetsTransfer setAgentID(Integer value) { this.AgentID = value; return this; }
public String getRegionalOffice() { return RegionalOffice; }
public SmartsheetsTransfer setRegionalOffice(String value) { this.RegionalOffice = value; return this; }
public String getTransferAmount() { return TransferAmount; }
public SmartsheetsTransfer setTransferAmount(String value) { this.TransferAmount = value; return this; }
public String getTransferringCompany() { return TransferringCompany; }
public SmartsheetsTransfer setTransferringCompany(String value) { this.TransferringCompany = value; return this; }
public String getAccountNumber() { return AccountNumber; }
public SmartsheetsTransfer setAccountNumber(String value) { this.AccountNumber = value; return this; }
public String getSs() { return SS; }
public SmartsheetsTransfer setSs(String value) { this.SS = value; return this; }
public String getNotes() { return Notes; }
public SmartsheetsTransfer setNotes(String value) { this.Notes = value; return this; }
public Boolean isDeleted() { return Deleted; }
public SmartsheetsTransfer setDeleted(Boolean value) { this.Deleted = value; return this; }
public String getModifiedBy() { return ModifiedBy; }
public SmartsheetsTransfer setModifiedBy(String value) { this.ModifiedBy = value; return this; }
public String getTransactionId() { return TransactionId; }
public SmartsheetsTransfer setTransactionId(String value) { this.TransactionId = value; return this; }
public Boolean isHasChange() { return HasChange; }
public SmartsheetsTransfer setHasChange(Boolean value) { this.HasChange = value; return this; }
public Boolean isHasConversation() { return HasConversation; }
public SmartsheetsTransfer setHasConversation(Boolean value) { this.HasConversation = value; return this; }
public Boolean isHasAgentMsg() { return HasAgentMsg; }
public SmartsheetsTransfer setHasAgentMsg(Boolean value) { this.HasAgentMsg = value; return this; }
public Boolean isHasAdminMsg() { return HasAdminMsg; }
public SmartsheetsTransfer setHasAdminMsg(Boolean value) { this.HasAdminMsg = value; return this; }
public ArrayList<Attachment> getAttachment() { return Attachment; }
public SmartsheetsTransfer setAttachment(ArrayList<Attachment> value) { this.Attachment = value; return this; }
public ArrayList<Reminder> getReminder() { return Reminder; }
public SmartsheetsTransfer setReminder(ArrayList<Reminder> value) { this.Reminder = value; return this; }
public String getAgents() { return Agents; }
public SmartsheetsTransfer setAgents(String value) { this.Agents = value; return this; }
public Boolean isHasOCR() { return HasOCR; }
public SmartsheetsTransfer setHasOCR(Boolean value) { this.HasOCR = value; return this; }
public UUID getPolicyAssociateId() { return PolicyAssociateId; }
public SmartsheetsTransfer setPolicyAssociateId(UUID value) { this.PolicyAssociateId = value; return this; }
public Boolean isHasRequiredDocuments() { return HasRequiredDocuments; }
public SmartsheetsTransfer setHasRequiredDocuments(Boolean value) { this.HasRequiredDocuments = value; return this; }
public String getPhone() { return Phone; }
public SmartsheetsTransfer setPhone(String value) { this.Phone = value; return this; }
public String getEmailAddress() { return EmailAddress; }
public SmartsheetsTransfer setEmailAddress(String value) { this.EmailAddress = value; return this; }
public String getApprovedDate() { return ApprovedDate; }
public SmartsheetsTransfer setApprovedDate(String value) { this.ApprovedDate = value; return this; }
public String getApprovedBy() { return ApprovedBy; }
public SmartsheetsTransfer setApprovedBy(String value) { this.ApprovedBy = value; return this; }
}
public static class SmartsheetsIssuedClosed
{
public String Type = null;
public Integer ID = null;
public Boolean Flagged = null;
public String Phase = null;
public String FirstName = null;
public String LastName = null;
public String PolicyNumber = null;
public String AgentName = null;
public String Notes = null;
public Boolean Deleted = null;
public String ModifiedBy = null;
public Boolean HasChange = null;
public Boolean HasConversation = null;
public Boolean HasAgentMsg = null;
public Boolean HasAdminMsg = null;
public ArrayList<Attachment> Attachment = new ArrayList<Attachment>();
public ArrayList<Reminder> Reminder = new ArrayList<Reminder>();
public Boolean HasOCR = null;
public String AppDate = null;
public String TransactionId = null;
public String getType() { return Type; }
public SmartsheetsIssuedClosed setType(String value) { this.Type = value; return this; }
public Integer getId() { return ID; }
public SmartsheetsIssuedClosed setId(Integer value) { this.ID = value; return this; }
public Boolean isFlagged() { return Flagged; }
public SmartsheetsIssuedClosed setFlagged(Boolean value) { this.Flagged = value; return this; }
public String getPhase() { return Phase; }
public SmartsheetsIssuedClosed setPhase(String value) { this.Phase = value; return this; }
public String getFirstName() { return FirstName; }
public SmartsheetsIssuedClosed setFirstName(String value) { this.FirstName = value; return this; }
public String getLastName() { return LastName; }
public SmartsheetsIssuedClosed setLastName(String value) { this.LastName = value; return this; }
public String getPolicyNumber() { return PolicyNumber; }
public SmartsheetsIssuedClosed setPolicyNumber(String value) { this.PolicyNumber = value; return this; }
public String getAgentName() { return AgentName; }
public SmartsheetsIssuedClosed setAgentName(String value) { this.AgentName = value; return this; }
public String getNotes() { return Notes; }
public SmartsheetsIssuedClosed setNotes(String value) { this.Notes = value; return this; }
public Boolean isDeleted() { return Deleted; }
public SmartsheetsIssuedClosed setDeleted(Boolean value) { this.Deleted = value; return this; }
public String getModifiedBy() { return ModifiedBy; }
public SmartsheetsIssuedClosed setModifiedBy(String value) { this.ModifiedBy = value; return this; }
public Boolean isHasChange() { return HasChange; }
public SmartsheetsIssuedClosed setHasChange(Boolean value) { this.HasChange = value; return this; }
public Boolean isHasConversation() { return HasConversation; }
public SmartsheetsIssuedClosed setHasConversation(Boolean value) { this.HasConversation = value; return this; }
public Boolean isHasAgentMsg() { return HasAgentMsg; }
public SmartsheetsIssuedClosed setHasAgentMsg(Boolean value) { this.HasAgentMsg = value; return this; }
public Boolean isHasAdminMsg() { return HasAdminMsg; }
public SmartsheetsIssuedClosed setHasAdminMsg(Boolean value) { this.HasAdminMsg = value; return this; }
public ArrayList<Attachment> getAttachment() { return Attachment; }
public SmartsheetsIssuedClosed setAttachment(ArrayList<Attachment> value) { this.Attachment = value; return this; }
public ArrayList<Reminder> getReminder() { return Reminder; }
public SmartsheetsIssuedClosed setReminder(ArrayList<Reminder> value) { this.Reminder = value; return this; }
public Boolean isHasOCR() { return HasOCR; }
public SmartsheetsIssuedClosed setHasOCR(Boolean value) { this.HasOCR = value; return this; }
public String getAppDate() { return AppDate; }
public SmartsheetsIssuedClosed setAppDate(String value) { this.AppDate = value; return this; }
public String getTransactionId() { return TransactionId; }
public SmartsheetsIssuedClosed setTransactionId(String value) { this.TransactionId = value; return this; }
}
}
To override the Content-type in your clients, use the HTTP Accept Header, append the .xml suffix or ?format=xml
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
GET /v1/Smartsheets/{AgentID} HTTP/1.1
Host: api.dev.dynamics.trendsic.com
Accept: application/xml
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length
<SmartsheetsResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CRM.AgencyPlatform.API.Internal">
<Flow>
<SmartsheetsFlow>
<AgentID>0</AgentID>
<AgentName>String</AgentName>
<Agents>String</Agents>
<AnnualPremium>String</AnnualPremium>
<AppDate>String</AppDate>
<ApprovedBy>String</ApprovedBy>
<ApprovedDate>String</ApprovedDate>
<Attachment>
<Attachment>
<AWSKey>String</AWSKey>
<AttachmentData>AA==</AttachmentData>
<AttachmentId>00000000-0000-0000-0000-000000000000</AttachmentId>
<AttachmentName>String</AttachmentName>
<CreatedBy>String</CreatedBy>
<CreatedDate>0001-01-01T00:00:00</CreatedDate>
<FieldName>String</FieldName>
<FileSizeInKB>0</FileSizeInKB>
<IsSecurities>false</IsSecurities>
<MimeType>String</MimeType>
<NeedsOCR>false</NeedsOCR>
<OCRDate>0001-01-01T00:00:00</OCRDate>
<PresignedUrl>String</PresignedUrl>
<RecordId>0</RecordId>
<TableName>String</TableName>
</Attachment>
</Attachment>
<Carrier>String</Carrier>
<Deleted>false</Deleted>
<District>String</District>
<EmailAddress>String</EmailAddress>
<FirstName>String</FirstName>
<Flagged>false</Flagged>
<Frequency>String</Frequency>
<HasAdminMsg>false</HasAdminMsg>
<HasAgentMsg>false</HasAgentMsg>
<HasChange>false</HasChange>
<HasConversation>false</HasConversation>
<HasOCR>false</HasOCR>
<HasRequiredDocuments>false</HasRequiredDocuments>
<ID>0</ID>
<LastName>String</LastName>
<ModalPremium>String</ModalPremium>
<ModifiedBy>String</ModifiedBy>
<Notes>String</Notes>
<Phase>String</Phase>
<Phone>String</Phone>
<PolicyAssociateId>00000000-0000-0000-0000-000000000000</PolicyAssociateId>
<PolicyNumber>String</PolicyNumber>
<PolicyType>String</PolicyType>
<Reminder>
<Reminder>
<CompletedDate>0001-01-01T00:00:00</CompletedDate>
<CreatedBy>String</CreatedBy>
<CreatedDate>0001-01-01T00:00:00</CreatedDate>
<FieldName>String</FieldName>
<RecordId>0</RecordId>
<ReminderDate>0001-01-01T00:00:00</ReminderDate>
<ReminderId>00000000-0000-0000-0000-000000000000</ReminderId>
<ReminderNote>String</ReminderNote>
<TableName>String</TableName>
</Reminder>
</Reminder>
<SRAStartDate>String</SRAStartDate>
<SS>String</SS>
<TPA>String</TPA>
<TransactionId>String</TransactionId>
</SmartsheetsFlow>
</Flow>
<IssuedClosed>
<SmartsheetsIssuedClosed>
<AgentName>String</AgentName>
<AppDate>String</AppDate>
<Attachment>
<Attachment>
<AWSKey>String</AWSKey>
<AttachmentData>AA==</AttachmentData>
<AttachmentId>00000000-0000-0000-0000-000000000000</AttachmentId>
<AttachmentName>String</AttachmentName>
<CreatedBy>String</CreatedBy>
<CreatedDate>0001-01-01T00:00:00</CreatedDate>
<FieldName>String</FieldName>
<FileSizeInKB>0</FileSizeInKB>
<IsSecurities>false</IsSecurities>
<MimeType>String</MimeType>
<NeedsOCR>false</NeedsOCR>
<OCRDate>0001-01-01T00:00:00</OCRDate>
<PresignedUrl>String</PresignedUrl>
<RecordId>0</RecordId>
<TableName>String</TableName>
</Attachment>
</Attachment>
<Deleted>false</Deleted>
<FirstName>String</FirstName>
<Flagged>false</Flagged>
<HasAdminMsg>false</HasAdminMsg>
<HasAgentMsg>false</HasAgentMsg>
<HasChange>false</HasChange>
<HasConversation>false</HasConversation>
<HasOCR>false</HasOCR>
<ID>0</ID>
<LastName>String</LastName>
<ModifiedBy>String</ModifiedBy>
<Notes>String</Notes>
<Phase>String</Phase>
<PolicyNumber>String</PolicyNumber>
<Reminder>
<Reminder>
<CompletedDate>0001-01-01T00:00:00</CompletedDate>
<CreatedBy>String</CreatedBy>
<CreatedDate>0001-01-01T00:00:00</CreatedDate>
<FieldName>String</FieldName>
<RecordId>0</RecordId>
<ReminderDate>0001-01-01T00:00:00</ReminderDate>
<ReminderId>00000000-0000-0000-0000-000000000000</ReminderId>
<ReminderNote>String</ReminderNote>
<TableName>String</TableName>
</Reminder>
</Reminder>
<TransactionId>String</TransactionId>
<Type>String</Type>
</SmartsheetsIssuedClosed>
</IssuedClosed>
<Life>
<SmartsheetsLife>
<AccountNumber>String</AccountNumber>
<AgentID>0</AgentID>
<AgentName>String</AgentName>
<Agents>String</Agents>
<AppDate>String</AppDate>
<ApprovedBy>String</ApprovedBy>
<ApprovedDate>String</ApprovedDate>
<Attachment>
<Attachment>
<AWSKey>String</AWSKey>
<AttachmentData>AA==</AttachmentData>
<AttachmentId>00000000-0000-0000-0000-000000000000</AttachmentId>
<AttachmentName>String</AttachmentName>
<CreatedBy>String</CreatedBy>
<CreatedDate>0001-01-01T00:00:00</CreatedDate>
<FieldName>String</FieldName>
<FileSizeInKB>0</FileSizeInKB>
<IsSecurities>false</IsSecurities>
<MimeType>String</MimeType>
<NeedsOCR>false</NeedsOCR>
<OCRDate>0001-01-01T00:00:00</OCRDate>
<PresignedUrl>String</PresignedUrl>
<RecordId>0</RecordId>
<TableName>String</TableName>
</Attachment>
</Attachment>
<CPT>String</CPT>
<Deleted>false</Deleted>
<EmailAddress>String</EmailAddress>
<FaceValue>String</FaceValue>
<FirstName>String</FirstName>
<Flagged>false</Flagged>
<HasAdminMsg>false</HasAdminMsg>
<HasAgentMsg>false</HasAgentMsg>
<HasChange>false</HasChange>
<HasConversation>false</HasConversation>
<HasOCR>false</HasOCR>
<HasRequiredDocuments>false</HasRequiredDocuments>
<ID>0</ID>
<LastName>String</LastName>
<ModifiedBy>String</ModifiedBy>
<Notes>String</Notes>
<Phase>String</Phase>
<Phone>String</Phone>
<PolicyAssociateId>00000000-0000-0000-0000-000000000000</PolicyAssociateId>
<PolicyNumber>String</PolicyNumber>
<PolicyType>String</PolicyType>
<Reminder>
<Reminder>
<CompletedDate>0001-01-01T00:00:00</CompletedDate>
<CreatedBy>String</CreatedBy>
<CreatedDate>0001-01-01T00:00:00</CreatedDate>
<FieldName>String</FieldName>
<RecordId>0</RecordId>
<ReminderDate>0001-01-01T00:00:00</ReminderDate>
<ReminderId>00000000-0000-0000-0000-000000000000</ReminderId>
<ReminderNote>String</ReminderNote>
<TableName>String</TableName>
</Reminder>
</Reminder>
<TransactionId>String</TransactionId>
<TransferAmount>String</TransferAmount>
</SmartsheetsLife>
</Life>
<ResponseStatus xmlns:d2p1="http://schemas.servicestack.net/types">
<d2p1:ErrorCode>String</d2p1:ErrorCode>
<d2p1:Message>String</d2p1:Message>
<d2p1:StackTrace>String</d2p1:StackTrace>
<d2p1:Errors>
<d2p1:ResponseError>
<d2p1:ErrorCode>String</d2p1:ErrorCode>
<d2p1:FieldName>String</d2p1:FieldName>
<d2p1:Message>String</d2p1:Message>
<d2p1:Meta xmlns:d5p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d5p1:KeyValueOfstringstring>
<d5p1:Key>String</d5p1:Key>
<d5p1:Value>String</d5p1:Value>
</d5p1:KeyValueOfstringstring>
</d2p1:Meta>
</d2p1:ResponseError>
</d2p1:Errors>
<d2p1:Meta xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d3p1:KeyValueOfstringstring>
<d3p1:Key>String</d3p1:Key>
<d3p1:Value>String</d3p1:Value>
</d3p1:KeyValueOfstringstring>
</d2p1:Meta>
</ResponseStatus>
<Transfer>
<SmartsheetsTransfer>
<AccountNumber>String</AccountNumber>
<AgentID>0</AgentID>
<AgentName>String</AgentName>
<Agents>String</Agents>
<AppDate>String</AppDate>
<ApprovedBy>String</ApprovedBy>
<ApprovedDate>String</ApprovedDate>
<Attachment>
<Attachment>
<AWSKey>String</AWSKey>
<AttachmentData>AA==</AttachmentData>
<AttachmentId>00000000-0000-0000-0000-000000000000</AttachmentId>
<AttachmentName>String</AttachmentName>
<CreatedBy>String</CreatedBy>
<CreatedDate>0001-01-01T00:00:00</CreatedDate>
<FieldName>String</FieldName>
<FileSizeInKB>0</FileSizeInKB>
<IsSecurities>false</IsSecurities>
<MimeType>String</MimeType>
<NeedsOCR>false</NeedsOCR>
<OCRDate>0001-01-01T00:00:00</OCRDate>
<PresignedUrl>String</PresignedUrl>
<RecordId>0</RecordId>
<TableName>String</TableName>
</Attachment>
</Attachment>
<Deleted>false</Deleted>
<EmailAddress>String</EmailAddress>
<FirstName>String</FirstName>
<Flagged>false</Flagged>
<HasAdminMsg>false</HasAdminMsg>
<HasAgentMsg>false</HasAgentMsg>
<HasChange>false</HasChange>
<HasConversation>false</HasConversation>
<HasOCR>false</HasOCR>
<HasRequiredDocuments>false</HasRequiredDocuments>
<ID>0</ID>
<LastName>String</LastName>
<ModifiedBy>String</ModifiedBy>
<Notes>String</Notes>
<Phase>String</Phase>
<Phone>String</Phone>
<PolicyAssociateId>00000000-0000-0000-0000-000000000000</PolicyAssociateId>
<PolicyNumber>String</PolicyNumber>
<PolicyType>String</PolicyType>
<RegionalOffice>String</RegionalOffice>
<Reminder>
<Reminder>
<CompletedDate>0001-01-01T00:00:00</CompletedDate>
<CreatedBy>String</CreatedBy>
<CreatedDate>0001-01-01T00:00:00</CreatedDate>
<FieldName>String</FieldName>
<RecordId>0</RecordId>
<ReminderDate>0001-01-01T00:00:00</ReminderDate>
<ReminderId>00000000-0000-0000-0000-000000000000</ReminderId>
<ReminderNote>String</ReminderNote>
<TableName>String</TableName>
</Reminder>
</Reminder>
<SS>String</SS>
<TransactionId>String</TransactionId>
<TransferAmount>String</TransferAmount>
<TransferringCompany>String</TransferringCompany>
</SmartsheetsTransfer>
</Transfer>
</SmartsheetsResponse>