irita.sdk.module.service.DefineServiceRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of irita-sdk Show documentation
Show all versions of irita-sdk Show documentation
Irita open alliance chain SDK (java)
package irita.sdk.module.service;
import java.util.List;
// DefineServiceRequest defines the request parameters of the service definition
public class DefineServiceRequest {
private String serviceName;
private String description;
private List tags;
private String authorDescription;
private String schemas;
public String getServiceName() {
return serviceName;
}
public void setServiceName(String serviceName) {
this.serviceName = serviceName;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public List getTags() {
return tags;
}
public void setTags(List tags) {
this.tags = tags;
}
public String getAuthorDescription() {
return authorDescription;
}
public void setAuthorDescription(String authorDescription) {
this.authorDescription = authorDescription;
}
public String getSchemas() {
return schemas;
}
public void setSchemas(String schemas) {
this.schemas = schemas;
}
}