/** * 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.appdev; import java.io.Serializable; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import org.joda.time.DateTime; import java.io.IOException; import java.lang.ClassNotFoundException; /** * Mozu.AppDev.Contracts.PackageSummary ApiType DOCUMENT_HERE */ @JsonIgnoreProperties(ignoreUnknown = true) public class PackageSummary implements Serializable { // Default Serial Version UID private static final long serialVersionUID = 1L; protected Integer applicationId; public Integer getApplicationId() { return this.applicationId; } public void setApplicationId(Integer applicationId) { this.applicationId = applicationId; } /** * Application Name */ protected String applicationName; public String getApplicationName() { return this.applicationName; } public void setApplicationName(String applicationName) { this.applicationName = applicationName; } /** * Application Type Id */ protected Integer applicationTypeId; public Integer getApplicationTypeId() { return this.applicationTypeId; } public void setApplicationTypeId(Integer applicationTypeId) { this.applicationTypeId = applicationTypeId; } /** * Unique identifier of the source product property. For a product field it will be the name of the field. For a product attribute it will be the Attribute FQN. */ protected Integer id; public Integer getId() { return this.id; } public void setId(Integer id) { this.id = id; } protected Boolean isLocked; public Boolean getIsLocked() { return this.isLocked; } public void setIsLocked(Boolean isLocked) { this.isLocked = isLocked; } /** * Application Major Version */ protected Integer majorVersion; public Integer getMajorVersion() { return this.majorVersion; } public void setMajorVersion(Integer majorVersion) { this.majorVersion = majorVersion; } /** * Application Minor Version */ protected Integer minorVersion; public Integer getMinorVersion() { return this.minorVersion; } public void setMinorVersion(Integer minorVersion) { this.minorVersion = minorVersion; } /** * The display name of the source product property. For a product field it will be the display name of the field. For a product attribute it will be the Attribute Name. */ protected String name; public String getName() { return this.name; } public void setName(String name) { this.name = name; } /** * Application Revision */ protected Integer revision; public Integer getRevision() { return this.revision; } public void setRevision(Integer revision) { this.revision = revision; } }