All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.mozu.api.contracts.location.LocationGroup Maven / Gradle / Ivy

Go to download

Mozu Java is a SDK that enables you to create robust Java applications that integrate with the Mozu platform

There is a newer version: 2.6.1-RC1
Show newest version
/**
 *     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.location;

import java.util.List;
import java.util.HashMap;
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;

@JsonIgnoreProperties(ignoreUnknown = true)
public class LocationGroup implements Serializable
{
	// Default Serial Version UID
	private static final long serialVersionUID = 1L;

	protected List locationCodes;
	public List getLocationCodes() {
		return this.locationCodes;
	}
	public void setLocationCodes(List locationCodes) {
		this.locationCodes = locationCodes;
	}

	protected  String locationGroupCode;

	public String getLocationGroupCode() {
		return this.locationGroupCode;
	}

	public void setLocationGroupCode(String locationGroupCode) {
		this.locationGroupCode = locationGroupCode;
	}

	protected  Integer locationGroupId;

	public Integer getLocationGroupId() {
		return this.locationGroupId;
	}

	public void setLocationGroupId(Integer locationGroupId) {
		this.locationGroupId = locationGroupId;
	}

	protected  String name;

	public String getName() {
		return this.name;
	}

	public void setName(String name) {
		this.name = name;
	}

	protected List siteIds;
	public List getSiteIds() {
		return this.siteIds;
	}
	public void setSiteIds(List siteIds) {
		this.siteIds = siteIds;
	}

	protected  AuditInfo auditInfo;

	public AuditInfo getAuditInfo() {
		return this.auditInfo;
	}

	public void setAuditInfo(AuditInfo auditInfo) {
		this.auditInfo = auditInfo;
	}


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy