/** * 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.customer.credit; import java.io.Serializable; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import org.joda.time.DateTime; import java.io.IOException; import java.lang.ClassNotFoundException; import com.mozu.api.contracts.core.AuditInfo; /** * Properties of an audit entry logged for a store credit or gift card. */ @JsonIgnoreProperties(ignoreUnknown = true) public class CreditAuditEntry implements Serializable { // Default Serial Version UID private static final long serialVersionUID = 1L; /** * The type of activity associated with the audit entry. Possible values are: Created, Updated, Deleted, Activated, Deactivated, or Transaction. */ protected String activityType; public String getActivityType() { return this.activityType; } public void setActivityType(String activityType) { this.activityType = activityType; } /** * Detail log that describes the activity performed for this credit audit entry. */ protected String details; public String getDetails() { return this.details; } public void setDetails(String details) { this.details = details; } /** * 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. */ protected AuditInfo auditInfo; public AuditInfo getAuditInfo() { return this.auditInfo; } public void setAuditInfo(AuditInfo auditInfo) { this.auditInfo = auditInfo; } }