
com.lark.oapi.event.cardcallback.model.CallBackAction Maven / Gradle / Ivy
package com.lark.oapi.event.cardcallback.model;
import com.google.gson.annotations.SerializedName;
import java.util.List;
import java.util.Map;
public class CallBackAction {
@SerializedName("value")
private Map value;
@SerializedName("tag")
private String tag;
@SerializedName("option")
private String option;
@SerializedName("timezone")
private String timezone;
@SerializedName("name")
private String name;
@SerializedName("form_value")
private Map formValue;
@SerializedName("input_value")
private String inputValue;
@SerializedName("options")
private List options;
@SerializedName("checked")
private Boolean checked;
public Map getValue() {
return this.value;
}
public void setValue(Map value) {
this.value = value;
}
public String getTag() {
return this.tag;
}
public void setTag(String tag) {
this.tag = tag;
}
public String getOption() {
return this.option;
}
public void setOption(String option) {
this.option = option;
}
public String getTimezone() {
return this.timezone;
}
public void setTimezone(String timezone) {
this.timezone = timezone;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public Map getFormValue() {
return this.formValue;
}
public void setFormValue(Map formValue) {
this.formValue = formValue;
}
public String getInputValue() {
return this.inputValue;
}
public void setInputValue(String inputValue) {
this.inputValue = inputValue;
}
public List getOptions() {
return this.options;
}
public void setOptions(List options) {
this.options = options;
}
public Boolean getChecked() {
return this.checked;
}
public void setChecked(Boolean checked) {
this.checked = checked;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy