
com.podio.conversation.ConversationCreate 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
The newest version!
package com.podio.conversation;
import java.util.List;
public class ConversationCreate {
private final String subject;
private final String text;
private final List participants;
public ConversationCreate(String subject, String text,
List participants) {
super();
this.subject = subject;
this.text = text;
this.participants = participants;
}
public String getSubject() {
return subject;
}
public String getText() {
return text;
}
public List getParticipants() {
return participants;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy