/* Options: Date: 2025-07-17 21:08:23 Version: 6.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://hcbtas-q-albamfs-api.azurewebsites.net //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: ContentMergeReqUpdated.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.*,com.google.gson.annotations.*,com.google.gson.reflect.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; import com.google.gson.annotations.*; import com.google.gson.reflect.*; public class dtos { @Route(Path="/contentmerge/changelog", Verbs="POST") public static class ContentMergeReqUpdated implements IReturn { public ArrayList changeLogs = null; public ArrayList getChangeLogs() { return changeLogs; } public ContentMergeReqUpdated setChangeLogs(ArrayList value) { this.changeLogs = value; return this; } private static Object responseType = ChangeLog.class; public Object getResponseType() { return responseType; } } public static class ChangeLog extends Entity { public String referenceId = null; public String country = null; public String language = null; public String section = null; public String itemCode = null; public String itemId = null; public ArrayList history = null; public String getReferenceId() { return referenceId; } public ChangeLog setReferenceId(String value) { this.referenceId = value; return this; } public String getCountry() { return country; } public ChangeLog setCountry(String value) { this.country = value; return this; } public String getLanguage() { return language; } public ChangeLog setLanguage(String value) { this.language = value; return this; } public String getSection() { return section; } public ChangeLog setSection(String value) { this.section = value; return this; } public String getItemCode() { return itemCode; } public ChangeLog setItemCode(String value) { this.itemCode = value; return this; } public String getItemId() { return itemId; } public ChangeLog setItemId(String value) { this.itemId = value; return this; } public ArrayList getHistory() { return history; } public ChangeLog setHistory(ArrayList value) { this.history = value; return this; } } public static class Entity implements IEntity { public String id = null; public String getId() { return id; } public Entity setId(String value) { this.id = value; return this; } } public static class Entity { public String logoUri = null; public String name = null; public ContactDetails contactDetails = null; public String getLogoUri() { return logoUri; } public Entity setLogoUri(String value) { this.logoUri = value; return this; } public String getName() { return name; } public Entity setName(String value) { this.name = value; return this; } public ContactDetails getContactDetails() { return contactDetails; } public Entity setContactDetails(ContactDetails value) { this.contactDetails = value; return this; } } public static class ChangeHistory { public String updatedBy = null; public Date dateCreated = null; public String element = null; public String old = null; @SerializedName("new") public String New = null; public String status = null; public String approvedBy = null; public Date dateApproved = null; public String getUpdatedBy() { return updatedBy; } public ChangeHistory setUpdatedBy(String value) { this.updatedBy = value; return this; } public Date getDateCreated() { return dateCreated; } public ChangeHistory setDateCreated(Date value) { this.dateCreated = value; return this; } public String getElement() { return element; } public ChangeHistory setElement(String value) { this.element = value; return this; } public String getOld() { return old; } public ChangeHistory setOld(String value) { this.old = value; return this; } public String getNew() { return New; } public ChangeHistory setNew(String value) { this.New = value; return this; } public String getStatus() { return status; } public ChangeHistory setStatus(String value) { this.status = value; return this; } public String getApprovedBy() { return approvedBy; } public ChangeHistory setApprovedBy(String value) { this.approvedBy = value; return this; } public Date getDateApproved() { return dateApproved; } public ChangeHistory setDateApproved(Date value) { this.dateApproved = value; return this; } } }