![JAR search and dependency download from the Maven repository](/logo.png)
com.unblu.webapi.model.v3.AgentTargetData Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of models-v3 Show documentation
Show all versions of models-v3 Show documentation
Java classes corresponding to the JSON bodies
package com.unblu.webapi.model.v3;
import com.fasterxml.jackson.annotation.JsonSubTypes;
import com.fasterxml.jackson.annotation.JsonTypeInfo;
@JsonTypeInfo(use = JsonTypeInfo.Id.NAME, include = JsonTypeInfo.As.EXISTING_PROPERTY, property = "$_type", visible = true)
@JsonSubTypes({
@JsonSubTypes.Type(value = PersonData.class, name = "PersonData"),
@JsonSubTypes.Type(value = TeamData.class, name = "TeamData"),
})
public interface AgentTargetData {
void setId(String id);
String getId();
AgentTargetData id(String id);
void setAccountId(String accountId);
String getAccountId();
AgentTargetData accountId(String accountId);
void setDisplayName(String displayName);
String getDisplayName();
AgentTargetData displayName(String displayName);
void setAvatar(ExpandableField avatar);
ExpandableField getAvatar();
AgentTargetData avatar(ExpandableField avatar);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy