com.podio.org.OrganizationCreate Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of api Show documentation
Show all versions of api Show documentation
The official Java wrapper for the Podio API
package com.podio.org;
public class OrganizationCreate {
/**
* The name of the new organization
*/
private String name;
/**
* The file id of the logo of the organization
*/
private Integer logo;
public OrganizationCreate(String name, Integer logo) {
super();
this.name = name;
this.logo = logo;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public Integer getLogo() {
return logo;
}
public void setLogo(Integer logo) {
this.logo = logo;
}
}