com.podio.user.ProfileFieldMultiValue 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.user;
import java.util.Collections;
import java.util.List;
public class ProfileFieldMultiValue {
private final List value;
public ProfileFieldMultiValue(F value) {
this(Collections.singletonList(value));
}
public ProfileFieldMultiValue(List value) {
super();
this.value = value;
}
public List getValue() {
return value;
}
}