ee.carlrobert.llm.client.you.UTMParameters Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of llm-client Show documentation
Show all versions of llm-client Show documentation
Java http client wrapped around the OkHttp3 library
package ee.carlrobert.llm.client.you;
public class UTMParameters {
private String id;
private String source;
private String medium;
private String campaign;
private String term;
private String content;
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getSource() {
return source;
}
public void setSource(String source) {
this.source = source;
}
public String getMedium() {
return medium;
}
public void setMedium(String medium) {
this.medium = medium;
}
public String getCampaign() {
return campaign;
}
public void setCampaign(String campaign) {
this.campaign = campaign;
}
public String getTerm() {
return term;
}
public void setTerm(String term) {
this.term = term;
}
public String getContent() {
return content;
}
public void setContent(String content) {
this.content = content;
}
}