/** * This code was auto-generated by a Codezu. * * Changes to this file may cause incorrect behavior and will be lost if * the code is regenerated. */ package com.mozu.api.contracts.core; import java.io.Serializable; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import org.joda.time.DateTime; import java.io.IOException; import java.lang.ClassNotFoundException; /** * Identifier and datetime stamp information recorded when a user or application creates, updates, or deletes a resource entity. This value is system-supplied and read-only. */ @JsonIgnoreProperties(ignoreUnknown = true) public class AuditInfo implements Serializable { // Default Serial Version UID private static final long serialVersionUID = 1L; /** * Unique identifier of the user created the resource entity. This value is system-supplied and read-only. */ protected String createBy; public String getCreateBy() { return this.createBy; } public void setCreateBy(String createBy) { this.createBy = createBy; } /** * Date and time when the entity was created, represented in UTC Date/Time. */ protected DateTime createDate; public DateTime getCreateDate() { return this.createDate; } public void setCreateDate(DateTime createDate) { this.createDate = createDate; } /** * Unique identifier of the user who last modified the item. This value is system-supplied and read-only. */ protected String updateBy; public String getUpdateBy() { return this.updateBy; } public void setUpdateBy(String updateBy) { this.updateBy = updateBy; } /** * Date and time when the entity was last updated, represented in UTC Date/Time. */ protected DateTime updateDate; public DateTime getUpdateDate() { return this.updateDate; } public void setUpdateDate(DateTime updateDate) { this.updateDate = updateDate; } }