com.alibaba.ocean.rawsdk.example.param.ExampleFamilyPostParam Maven / Gradle / Ivy
The newest version!
package com.alibaba.ocean.rawsdk.example.param;
import com.alibaba.ocean.rawsdk.client.APIId;
import com.alibaba.ocean.rawsdk.common.AbstractAPIRequest;
public class ExampleFamilyPostParam extends
AbstractAPIRequest {
public ExampleFamilyPostParam() {
super();
oceanApiId = new APIId("api.example", "example.family.post", 1);
}
private ExampleFamily family;
public ExampleFamily getFamily() {
return family;
}
public void setFamily(ExampleFamily family) {
this.family = family;
}
private String comments;
public String getComments() {
return comments;
}
public void setComments(String comments) {
this.comments = comments;
}
private byte[] houseImg;
public byte[] getHouseImg() {
return houseImg;
}
public void setHouseImg(byte[] houseImg) {
this.houseImg = houseImg;
}
}