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

com.podio.app.ApplicationFieldCreate Maven / Gradle / Ivy

package com.podio.app;

import org.codehaus.jackson.annotate.JsonProperty;

public class ApplicationFieldCreate {

	/**
	 * The type of the field (see area for more information)
	 */
	private ApplicationFieldType type;

	/**
	 * The configuration of the field
	 */
	private ApplicationFieldConfiguration configuration;

	public ApplicationFieldCreate() {
		super();
	}

	public ApplicationFieldCreate(ApplicationFieldType type,
			ApplicationFieldConfiguration configuration) {
		super();
		this.type = type;
		this.configuration = configuration;
	}

	public ApplicationFieldType getType() {
		return type;
	}

	public void setType(ApplicationFieldType type) {
		this.type = type;
	}

	@JsonProperty("config")
	public ApplicationFieldConfiguration getConfiguration() {
		return configuration;
	}

	@JsonProperty("config")
	public void setConfiguration(ApplicationFieldConfiguration configuration) {
		this.configuration = configuration;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy