index
int64
repo_id
string
file_path
string
content
string
0
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model/v20170328/ResumeInstanceResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloudwf.model.v20170328; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudwf.transform.v20170328.ResumeInstanceResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ResumeInstanceResponse extends AcsResponse { private String requestId; private Boolean success; private String message; private String result; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getResult() { return this.result; } public void setResult(String result) { this.result = result; } @Override public ResumeInstanceResponse getInstance(UnmarshallerContext context) { return ResumeInstanceResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model/v20170328/SaveAccountConfigRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloudwf.model.v20170328; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * @version */ public class SaveAccountConfigRequest extends RpcAcsRequest<SaveAccountConfigResponse> { public SaveAccountConfigRequest() { super("cloudwf", "2017-03-28", "SaveAccountConfig", "cloudwf"); } private String jsonData; public String getJsonData() { return this.jsonData; } public void setJsonData(String jsonData) { this.jsonData = jsonData; if(jsonData != null){ putQueryParameter("JsonData", jsonData); } } @Override public Class<SaveAccountConfigResponse> getResponseClass() { return SaveAccountConfigResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model/v20170328/SaveAccountConfigResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloudwf.model.v20170328; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudwf.transform.v20170328.SaveAccountConfigResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class SaveAccountConfigResponse extends AcsResponse { private String requestId; private Boolean success; private String message; private String data; private Integer errorCode; private String errorMsg; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getData() { return this.data; } public void setData(String data) { this.data = data; } public Integer getErrorCode() { return this.errorCode; } public void setErrorCode(Integer errorCode) { this.errorCode = errorCode; } public String getErrorMsg() { return this.errorMsg; } public void setErrorMsg(String errorMsg) { this.errorMsg = errorMsg; } @Override public SaveAccountConfigResponse getInstance(UnmarshallerContext context) { return SaveAccountConfigResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model/v20170328/SaveApConfigRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloudwf.model.v20170328; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * @version */ public class SaveApConfigRequest extends RpcAcsRequest<SaveApConfigResponse> { public SaveApConfigRequest() { super("cloudwf", "2017-03-28", "SaveApConfig", "cloudwf"); } private String country; private Long apAssetId; private Integer logLevel; private String name; private Integer echoInt; private Integer scan; private String description; private Long id; private String dai; private String logIp; private String mac; public String getCountry() { return this.country; } public void setCountry(String country) { this.country = country; if(country != null){ putQueryParameter("Country", country); } } public Long getApAssetId() { return this.apAssetId; } public void setApAssetId(Long apAssetId) { this.apAssetId = apAssetId; if(apAssetId != null){ putQueryParameter("ApAssetId", apAssetId.toString()); } } public Integer getLogLevel() { return this.logLevel; } public void setLogLevel(Integer logLevel) { this.logLevel = logLevel; if(logLevel != null){ putQueryParameter("LogLevel", logLevel.toString()); } } public String getName() { return this.name; } public void setName(String name) { this.name = name; if(name != null){ putQueryParameter("Name", name); } } public Integer getEchoInt() { return this.echoInt; } public void setEchoInt(Integer echoInt) { this.echoInt = echoInt; if(echoInt != null){ putQueryParameter("EchoInt", echoInt.toString()); } } public Integer getScan() { return this.scan; } public void setScan(Integer scan) { this.scan = scan; if(scan != null){ putQueryParameter("Scan", scan.toString()); } } public String getDescription() { return this.description; } public void setDescription(String description) { this.description = description; if(description != null){ putQueryParameter("Description", description); } } public Long getId() { return this.id; } public void setId(Long id) { this.id = id; if(id != null){ putQueryParameter("Id", id.toString()); } } public String getDai() { return this.dai; } public void setDai(String dai) { this.dai = dai; if(dai != null){ putQueryParameter("Dai", dai); } } public String getLogIp() { return this.logIp; } public void setLogIp(String logIp) { this.logIp = logIp; if(logIp != null){ putQueryParameter("LogIp", logIp); } } public String getMac() { return this.mac; } public void setMac(String mac) { this.mac = mac; if(mac != null){ putQueryParameter("Mac", mac); } } @Override public Class<SaveApConfigResponse> getResponseClass() { return SaveApConfigResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model/v20170328/SaveApConfigResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloudwf.model.v20170328; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudwf.transform.v20170328.SaveApConfigResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class SaveApConfigResponse extends AcsResponse { private String requestId; private Boolean success; private String message; private String data; private Integer errorCode; private String errorMsg; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getData() { return this.data; } public void setData(String data) { this.data = data; } public Integer getErrorCode() { return this.errorCode; } public void setErrorCode(Integer errorCode) { this.errorCode = errorCode; } public String getErrorMsg() { return this.errorMsg; } public void setErrorMsg(String errorMsg) { this.errorMsg = errorMsg; } @Override public SaveApConfigResponse getInstance(UnmarshallerContext context) { return SaveApConfigResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model/v20170328/SaveApMapInfoRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloudwf.model.v20170328; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * @version */ public class SaveApMapInfoRequest extends RpcAcsRequest<SaveApMapInfoResponse> { public SaveApMapInfoRequest() { super("cloudwf", "2017-03-28", "SaveApMapInfo", "cloudwf"); } private String jsonData; public String getJsonData() { return this.jsonData; } public void setJsonData(String jsonData) { this.jsonData = jsonData; if(jsonData != null){ putQueryParameter("JsonData", jsonData); } } @Override public Class<SaveApMapInfoResponse> getResponseClass() { return SaveApMapInfoResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model/v20170328/SaveApMapInfoResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloudwf.model.v20170328; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudwf.transform.v20170328.SaveApMapInfoResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class SaveApMapInfoResponse extends AcsResponse { private String requestId; private Boolean success; private String message; private String data; private Integer errorCode; private String errorMsg; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getData() { return this.data; } public void setData(String data) { this.data = data; } public Integer getErrorCode() { return this.errorCode; } public void setErrorCode(Integer errorCode) { this.errorCode = errorCode; } public String getErrorMsg() { return this.errorMsg; } public void setErrorMsg(String errorMsg) { this.errorMsg = errorMsg; } @Override public SaveApMapInfoResponse getInstance(UnmarshallerContext context) { return SaveApMapInfoResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model/v20170328/SaveApPortalConfigRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloudwf.model.v20170328; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * @version */ public class SaveApPortalConfigRequest extends RpcAcsRequest<SaveApPortalConfigResponse> { public SaveApPortalConfigRequest() { super("cloudwf", "2017-03-28", "SaveApPortalConfig", "cloudwf"); } private String authKey; private String portalUrl; private Boolean portalStatus; private String whitelist; private String checkUrl; private Long apConfigId; private String authSecret; private String webAuthUrl; private Integer network; public String getAuthKey() { return this.authKey; } public void setAuthKey(String authKey) { this.authKey = authKey; if(authKey != null){ putQueryParameter("AuthKey", authKey); } } public String getPortalUrl() { return this.portalUrl; } public void setPortalUrl(String portalUrl) { this.portalUrl = portalUrl; if(portalUrl != null){ putQueryParameter("PortalUrl", portalUrl); } } public Boolean getPortalStatus() { return this.portalStatus; } public void setPortalStatus(Boolean portalStatus) { this.portalStatus = portalStatus; if(portalStatus != null){ putQueryParameter("PortalStatus", portalStatus.toString()); } } public String getWhitelist() { return this.whitelist; } public void setWhitelist(String whitelist) { this.whitelist = whitelist; if(whitelist != null){ putQueryParameter("Whitelist", whitelist); } } public String getCheckUrl() { return this.checkUrl; } public void setCheckUrl(String checkUrl) { this.checkUrl = checkUrl; if(checkUrl != null){ putQueryParameter("CheckUrl", checkUrl); } } public Long getApConfigId() { return this.apConfigId; } public void setApConfigId(Long apConfigId) { this.apConfigId = apConfigId; if(apConfigId != null){ putQueryParameter("ApConfigId", apConfigId.toString()); } } public String getAuthSecret() { return this.authSecret; } public void setAuthSecret(String authSecret) { this.authSecret = authSecret; if(authSecret != null){ putQueryParameter("AuthSecret", authSecret); } } public String getWebAuthUrl() { return this.webAuthUrl; } public void setWebAuthUrl(String webAuthUrl) { this.webAuthUrl = webAuthUrl; if(webAuthUrl != null){ putQueryParameter("WebAuthUrl", webAuthUrl); } } public Integer getNetwork() { return this.network; } public void setNetwork(Integer network) { this.network = network; if(network != null){ putQueryParameter("Network", network.toString()); } } @Override public Class<SaveApPortalConfigResponse> getResponseClass() { return SaveApPortalConfigResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model/v20170328/SaveApPortalConfigResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloudwf.model.v20170328; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudwf.transform.v20170328.SaveApPortalConfigResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class SaveApPortalConfigResponse extends AcsResponse { private String requestId; private Boolean success; private String message; private String data; private Integer errorCode; private String errorMsg; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getData() { return this.data; } public void setData(String data) { this.data = data; } public Integer getErrorCode() { return this.errorCode; } public void setErrorCode(Integer errorCode) { this.errorCode = errorCode; } public String getErrorMsg() { return this.errorMsg; } public void setErrorMsg(String errorMsg) { this.errorMsg = errorMsg; } @Override public SaveApPortalConfigResponse getInstance(UnmarshallerContext context) { return SaveApPortalConfigResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model/v20170328/SaveApRadioConfigRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloudwf.model.v20170328; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * @version */ public class SaveApRadioConfigRequest extends RpcAcsRequest<SaveApRadioConfigResponse> { public SaveApRadioConfigRequest() { super("cloudwf", "2017-03-28", "SaveApRadioConfig", "cloudwf"); } private String requireMode; private String htmode; private Integer frag; private Integer minrate; private Integer mcastRate; private Integer probereq; private Integer channel; private Integer shortgi; private String hwmode; private Integer uapsd; private Integer beaconInt; private String mac; private Integer rts; private Integer txpower; private Integer noscan; private Integer bcastRate; private Integer disabled; private Integer instantlyEffective; private Long id; private Integer radioIndex; public String getRequireMode() { return this.requireMode; } public void setRequireMode(String requireMode) { this.requireMode = requireMode; if(requireMode != null){ putQueryParameter("RequireMode", requireMode); } } public String getHtmode() { return this.htmode; } public void setHtmode(String htmode) { this.htmode = htmode; if(htmode != null){ putQueryParameter("Htmode", htmode); } } public Integer getFrag() { return this.frag; } public void setFrag(Integer frag) { this.frag = frag; if(frag != null){ putQueryParameter("Frag", frag.toString()); } } public Integer getMinrate() { return this.minrate; } public void setMinrate(Integer minrate) { this.minrate = minrate; if(minrate != null){ putQueryParameter("Minrate", minrate.toString()); } } public Integer getMcastRate() { return this.mcastRate; } public void setMcastRate(Integer mcastRate) { this.mcastRate = mcastRate; if(mcastRate != null){ putQueryParameter("McastRate", mcastRate.toString()); } } public Integer getProbereq() { return this.probereq; } public void setProbereq(Integer probereq) { this.probereq = probereq; if(probereq != null){ putQueryParameter("Probereq", probereq.toString()); } } public Integer getChannel() { return this.channel; } public void setChannel(Integer channel) { this.channel = channel; if(channel != null){ putQueryParameter("Channel", channel.toString()); } } public Integer getShortgi() { return this.shortgi; } public void setShortgi(Integer shortgi) { this.shortgi = shortgi; if(shortgi != null){ putQueryParameter("Shortgi", shortgi.toString()); } } public String getHwmode() { return this.hwmode; } public void setHwmode(String hwmode) { this.hwmode = hwmode; if(hwmode != null){ putQueryParameter("Hwmode", hwmode); } } public Integer getUapsd() { return this.uapsd; } public void setUapsd(Integer uapsd) { this.uapsd = uapsd; if(uapsd != null){ putQueryParameter("Uapsd", uapsd.toString()); } } public Integer getBeaconInt() { return this.beaconInt; } public void setBeaconInt(Integer beaconInt) { this.beaconInt = beaconInt; if(beaconInt != null){ putQueryParameter("BeaconInt", beaconInt.toString()); } } public String getMac() { return this.mac; } public void setMac(String mac) { this.mac = mac; if(mac != null){ putQueryParameter("Mac", mac); } } public Integer getRts() { return this.rts; } public void setRts(Integer rts) { this.rts = rts; if(rts != null){ putQueryParameter("Rts", rts.toString()); } } public Integer getTxpower() { return this.txpower; } public void setTxpower(Integer txpower) { this.txpower = txpower; if(txpower != null){ putQueryParameter("Txpower", txpower.toString()); } } public Integer getNoscan() { return this.noscan; } public void setNoscan(Integer noscan) { this.noscan = noscan; if(noscan != null){ putQueryParameter("Noscan", noscan.toString()); } } public Integer getBcastRate() { return this.bcastRate; } public void setBcastRate(Integer bcastRate) { this.bcastRate = bcastRate; if(bcastRate != null){ putQueryParameter("BcastRate", bcastRate.toString()); } } public Integer getDisabled() { return this.disabled; } public void setDisabled(Integer disabled) { this.disabled = disabled; if(disabled != null){ putQueryParameter("Disabled", disabled.toString()); } } public Integer getInstantlyEffective() { return this.instantlyEffective; } public void setInstantlyEffective(Integer instantlyEffective) { this.instantlyEffective = instantlyEffective; if(instantlyEffective != null){ putQueryParameter("InstantlyEffective", instantlyEffective.toString()); } } public Long getId() { return this.id; } public void setId(Long id) { this.id = id; if(id != null){ putQueryParameter("Id", id.toString()); } } public Integer getRadioIndex() { return this.radioIndex; } public void setRadioIndex(Integer radioIndex) { this.radioIndex = radioIndex; if(radioIndex != null){ putQueryParameter("RadioIndex", radioIndex.toString()); } } @Override public Class<SaveApRadioConfigResponse> getResponseClass() { return SaveApRadioConfigResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model/v20170328/SaveApRadioConfigResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloudwf.model.v20170328; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudwf.transform.v20170328.SaveApRadioConfigResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class SaveApRadioConfigResponse extends AcsResponse { private String requestId; private Boolean success; private String message; private String data; private Integer errorCode; private String errorMsg; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getData() { return this.data; } public void setData(String data) { this.data = data; } public Integer getErrorCode() { return this.errorCode; } public void setErrorCode(Integer errorCode) { this.errorCode = errorCode; } public String getErrorMsg() { return this.errorMsg; } public void setErrorMsg(String errorMsg) { this.errorMsg = errorMsg; } @Override public SaveApRadioConfigResponse getInstance(UnmarshallerContext context) { return SaveApRadioConfigResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model/v20170328/SaveApRadioSsidConfigRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloudwf.model.v20170328; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * @version */ public class SaveApRadioSsidConfigRequest extends RpcAcsRequest<SaveApRadioSsidConfigResponse> { public SaveApRadioSsidConfigRequest() { super("cloudwf", "2017-03-28", "SaveApRadioSsidConfig", "cloudwf"); } private String nasid; private Integer authPort; private Integer hidden; private Integer dynamicVlan; private String authServer; private String secondaryAcctServer; private String ssid; private Integer cir; private String mac; private String secondaryAcctSecret; private Integer ieee80211w; private Integer network; private Integer isolate; private Long apAssetId; private String encKey; private Integer multicastForward; private String encryption; private Integer wmm; private Integer authCache; private Integer disabled; private Long id; private Integer radioIndex; private Integer ignoreWeakProbe; private Integer maxassoc; private String acctServer; private String secondaryAuthServer; private String daeClient; private String daeSecret; private Integer disassocLowAck; private Integer secondaryAuthPort; private String acctSecret; private Integer disassocWeakRssi; private Integer secondaryAcctPort; private Integer daePort; private Integer ssidLb; private Integer acctPort; private Integer maxInactivity; private Integer vlanDhcp; private Integer instantlyEffective; private Integer shortPreamble; private String authSecret; private String secondaryAuthSecret; private String ownip; public String getNasid() { return this.nasid; } public void setNasid(String nasid) { this.nasid = nasid; if(nasid != null){ putQueryParameter("Nasid", nasid); } } public Integer getAuthPort() { return this.authPort; } public void setAuthPort(Integer authPort) { this.authPort = authPort; if(authPort != null){ putQueryParameter("AuthPort", authPort.toString()); } } public Integer getHidden() { return this.hidden; } public void setHidden(Integer hidden) { this.hidden = hidden; if(hidden != null){ putQueryParameter("Hidden", hidden.toString()); } } public Integer getDynamicVlan() { return this.dynamicVlan; } public void setDynamicVlan(Integer dynamicVlan) { this.dynamicVlan = dynamicVlan; if(dynamicVlan != null){ putQueryParameter("DynamicVlan", dynamicVlan.toString()); } } public String getAuthServer() { return this.authServer; } public void setAuthServer(String authServer) { this.authServer = authServer; if(authServer != null){ putQueryParameter("AuthServer", authServer); } } public String getSecondaryAcctServer() { return this.secondaryAcctServer; } public void setSecondaryAcctServer(String secondaryAcctServer) { this.secondaryAcctServer = secondaryAcctServer; if(secondaryAcctServer != null){ putQueryParameter("SecondaryAcctServer", secondaryAcctServer); } } public String getSsid() { return this.ssid; } public void setSsid(String ssid) { this.ssid = ssid; if(ssid != null){ putQueryParameter("Ssid", ssid); } } public Integer getCir() { return this.cir; } public void setCir(Integer cir) { this.cir = cir; if(cir != null){ putQueryParameter("Cir", cir.toString()); } } public String getMac() { return this.mac; } public void setMac(String mac) { this.mac = mac; if(mac != null){ putQueryParameter("Mac", mac); } } public String getSecondaryAcctSecret() { return this.secondaryAcctSecret; } public void setSecondaryAcctSecret(String secondaryAcctSecret) { this.secondaryAcctSecret = secondaryAcctSecret; if(secondaryAcctSecret != null){ putQueryParameter("SecondaryAcctSecret", secondaryAcctSecret); } } public Integer getIeee80211w() { return this.ieee80211w; } public void setIeee80211w(Integer ieee80211w) { this.ieee80211w = ieee80211w; if(ieee80211w != null){ putQueryParameter("Ieee80211w", ieee80211w.toString()); } } public Integer getNetwork() { return this.network; } public void setNetwork(Integer network) { this.network = network; if(network != null){ putQueryParameter("Network", network.toString()); } } public Integer getIsolate() { return this.isolate; } public void setIsolate(Integer isolate) { this.isolate = isolate; if(isolate != null){ putQueryParameter("Isolate", isolate.toString()); } } public Long getApAssetId() { return this.apAssetId; } public void setApAssetId(Long apAssetId) { this.apAssetId = apAssetId; if(apAssetId != null){ putQueryParameter("ApAssetId", apAssetId.toString()); } } public String getEncKey() { return this.encKey; } public void setEncKey(String encKey) { this.encKey = encKey; if(encKey != null){ putQueryParameter("EncKey", encKey); } } public Integer getMulticastForward() { return this.multicastForward; } public void setMulticastForward(Integer multicastForward) { this.multicastForward = multicastForward; if(multicastForward != null){ putQueryParameter("MulticastForward", multicastForward.toString()); } } public String getEncryption() { return this.encryption; } public void setEncryption(String encryption) { this.encryption = encryption; if(encryption != null){ putQueryParameter("Encryption", encryption); } } public Integer getWmm() { return this.wmm; } public void setWmm(Integer wmm) { this.wmm = wmm; if(wmm != null){ putQueryParameter("Wmm", wmm.toString()); } } public Integer getAuthCache() { return this.authCache; } public void setAuthCache(Integer authCache) { this.authCache = authCache; if(authCache != null){ putQueryParameter("AuthCache", authCache.toString()); } } public Integer getDisabled() { return this.disabled; } public void setDisabled(Integer disabled) { this.disabled = disabled; if(disabled != null){ putQueryParameter("Disabled", disabled.toString()); } } public Long getId() { return this.id; } public void setId(Long id) { this.id = id; if(id != null){ putQueryParameter("Id", id.toString()); } } public Integer getRadioIndex() { return this.radioIndex; } public void setRadioIndex(Integer radioIndex) { this.radioIndex = radioIndex; if(radioIndex != null){ putQueryParameter("RadioIndex", radioIndex.toString()); } } public Integer getIgnoreWeakProbe() { return this.ignoreWeakProbe; } public void setIgnoreWeakProbe(Integer ignoreWeakProbe) { this.ignoreWeakProbe = ignoreWeakProbe; if(ignoreWeakProbe != null){ putQueryParameter("IgnoreWeakProbe", ignoreWeakProbe.toString()); } } public Integer getMaxassoc() { return this.maxassoc; } public void setMaxassoc(Integer maxassoc) { this.maxassoc = maxassoc; if(maxassoc != null){ putQueryParameter("Maxassoc", maxassoc.toString()); } } public String getAcctServer() { return this.acctServer; } public void setAcctServer(String acctServer) { this.acctServer = acctServer; if(acctServer != null){ putQueryParameter("AcctServer", acctServer); } } public String getSecondaryAuthServer() { return this.secondaryAuthServer; } public void setSecondaryAuthServer(String secondaryAuthServer) { this.secondaryAuthServer = secondaryAuthServer; if(secondaryAuthServer != null){ putQueryParameter("SecondaryAuthServer", secondaryAuthServer); } } public String getDaeClient() { return this.daeClient; } public void setDaeClient(String daeClient) { this.daeClient = daeClient; if(daeClient != null){ putQueryParameter("DaeClient", daeClient); } } public String getDaeSecret() { return this.daeSecret; } public void setDaeSecret(String daeSecret) { this.daeSecret = daeSecret; if(daeSecret != null){ putQueryParameter("DaeSecret", daeSecret); } } public Integer getDisassocLowAck() { return this.disassocLowAck; } public void setDisassocLowAck(Integer disassocLowAck) { this.disassocLowAck = disassocLowAck; if(disassocLowAck != null){ putQueryParameter("DisassocLowAck", disassocLowAck.toString()); } } public Integer getSecondaryAuthPort() { return this.secondaryAuthPort; } public void setSecondaryAuthPort(Integer secondaryAuthPort) { this.secondaryAuthPort = secondaryAuthPort; if(secondaryAuthPort != null){ putQueryParameter("SecondaryAuthPort", secondaryAuthPort.toString()); } } public String getAcctSecret() { return this.acctSecret; } public void setAcctSecret(String acctSecret) { this.acctSecret = acctSecret; if(acctSecret != null){ putQueryParameter("AcctSecret", acctSecret); } } public Integer getDisassocWeakRssi() { return this.disassocWeakRssi; } public void setDisassocWeakRssi(Integer disassocWeakRssi) { this.disassocWeakRssi = disassocWeakRssi; if(disassocWeakRssi != null){ putQueryParameter("DisassocWeakRssi", disassocWeakRssi.toString()); } } public Integer getSecondaryAcctPort() { return this.secondaryAcctPort; } public void setSecondaryAcctPort(Integer secondaryAcctPort) { this.secondaryAcctPort = secondaryAcctPort; if(secondaryAcctPort != null){ putQueryParameter("SecondaryAcctPort", secondaryAcctPort.toString()); } } public Integer getDaePort() { return this.daePort; } public void setDaePort(Integer daePort) { this.daePort = daePort; if(daePort != null){ putQueryParameter("DaePort", daePort.toString()); } } public Integer getSsidLb() { return this.ssidLb; } public void setSsidLb(Integer ssidLb) { this.ssidLb = ssidLb; if(ssidLb != null){ putQueryParameter("SsidLb", ssidLb.toString()); } } public Integer getAcctPort() { return this.acctPort; } public void setAcctPort(Integer acctPort) { this.acctPort = acctPort; if(acctPort != null){ putQueryParameter("AcctPort", acctPort.toString()); } } public Integer getMaxInactivity() { return this.maxInactivity; } public void setMaxInactivity(Integer maxInactivity) { this.maxInactivity = maxInactivity; if(maxInactivity != null){ putQueryParameter("MaxInactivity", maxInactivity.toString()); } } public Integer getVlanDhcp() { return this.vlanDhcp; } public void setVlanDhcp(Integer vlanDhcp) { this.vlanDhcp = vlanDhcp; if(vlanDhcp != null){ putQueryParameter("VlanDhcp", vlanDhcp.toString()); } } public Integer getInstantlyEffective() { return this.instantlyEffective; } public void setInstantlyEffective(Integer instantlyEffective) { this.instantlyEffective = instantlyEffective; if(instantlyEffective != null){ putQueryParameter("InstantlyEffective", instantlyEffective.toString()); } } public Integer getShortPreamble() { return this.shortPreamble; } public void setShortPreamble(Integer shortPreamble) { this.shortPreamble = shortPreamble; if(shortPreamble != null){ putQueryParameter("ShortPreamble", shortPreamble.toString()); } } public String getAuthSecret() { return this.authSecret; } public void setAuthSecret(String authSecret) { this.authSecret = authSecret; if(authSecret != null){ putQueryParameter("AuthSecret", authSecret); } } public String getSecondaryAuthSecret() { return this.secondaryAuthSecret; } public void setSecondaryAuthSecret(String secondaryAuthSecret) { this.secondaryAuthSecret = secondaryAuthSecret; if(secondaryAuthSecret != null){ putQueryParameter("SecondaryAuthSecret", secondaryAuthSecret); } } public String getOwnip() { return this.ownip; } public void setOwnip(String ownip) { this.ownip = ownip; if(ownip != null){ putQueryParameter("Ownip", ownip); } } @Override public Class<SaveApRadioSsidConfigResponse> getResponseClass() { return SaveApRadioSsidConfigResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model/v20170328/SaveApRadioSsidConfigResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloudwf.model.v20170328; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudwf.transform.v20170328.SaveApRadioSsidConfigResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class SaveApRadioSsidConfigResponse extends AcsResponse { private String requestId; private Boolean success; private String message; private String data; private Integer errorCode; private String errorMsg; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getData() { return this.data; } public void setData(String data) { this.data = data; } public Integer getErrorCode() { return this.errorCode; } public void setErrorCode(Integer errorCode) { this.errorCode = errorCode; } public String getErrorMsg() { return this.errorMsg; } public void setErrorMsg(String errorMsg) { this.errorMsg = errorMsg; } @Override public SaveApRadioSsidConfigResponse getInstance(UnmarshallerContext context) { return SaveApRadioSsidConfigResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model/v20170328/SaveApScanConfigRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloudwf.model.v20170328; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * @version */ public class SaveApScanConfigRequest extends RpcAcsRequest<SaveApScanConfigResponse> { public SaveApScanConfigRequest() { super("cloudwf", "2017-03-28", "SaveApScanConfig", "cloudwf"); } private String jsonData; private Long apConfigId; public String getJsonData() { return this.jsonData; } public void setJsonData(String jsonData) { this.jsonData = jsonData; if(jsonData != null){ putQueryParameter("JsonData", jsonData); } } public Long getApConfigId() { return this.apConfigId; } public void setApConfigId(Long apConfigId) { this.apConfigId = apConfigId; if(apConfigId != null){ putQueryParameter("ApConfigId", apConfigId.toString()); } } @Override public Class<SaveApScanConfigResponse> getResponseClass() { return SaveApScanConfigResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model/v20170328/SaveApScanConfigResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloudwf.model.v20170328; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudwf.transform.v20170328.SaveApScanConfigResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class SaveApScanConfigResponse extends AcsResponse { private String requestId; private Boolean success; private String message; private String data; private Integer errorCode; private String errorMsg; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getData() { return this.data; } public void setData(String data) { this.data = data; } public Integer getErrorCode() { return this.errorCode; } public void setErrorCode(Integer errorCode) { this.errorCode = errorCode; } public String getErrorMsg() { return this.errorMsg; } public void setErrorMsg(String errorMsg) { this.errorMsg = errorMsg; } @Override public SaveApScanConfigResponse getInstance(UnmarshallerContext context) { return SaveApScanConfigResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model/v20170328/SaveApgroupConfigRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloudwf.model.v20170328; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * @version */ public class SaveApgroupConfigRequest extends RpcAcsRequest<SaveApgroupConfigResponse> { public SaveApgroupConfigRequest() { super("cloudwf", "2017-03-28", "SaveApgroupConfig", "cloudwf"); } private String country; private Integer logLevel; private String name; private Integer echoInt; private Integer scan; private String description; private Long id; private String dai; private String logIp; public String getCountry() { return this.country; } public void setCountry(String country) { this.country = country; if(country != null){ putQueryParameter("Country", country); } } public Integer getLogLevel() { return this.logLevel; } public void setLogLevel(Integer logLevel) { this.logLevel = logLevel; if(logLevel != null){ putQueryParameter("LogLevel", logLevel.toString()); } } public String getName() { return this.name; } public void setName(String name) { this.name = name; if(name != null){ putQueryParameter("Name", name); } } public Integer getEchoInt() { return this.echoInt; } public void setEchoInt(Integer echoInt) { this.echoInt = echoInt; if(echoInt != null){ putQueryParameter("EchoInt", echoInt.toString()); } } public Integer getScan() { return this.scan; } public void setScan(Integer scan) { this.scan = scan; if(scan != null){ putQueryParameter("Scan", scan.toString()); } } public String getDescription() { return this.description; } public void setDescription(String description) { this.description = description; if(description != null){ putQueryParameter("Description", description); } } public Long getId() { return this.id; } public void setId(Long id) { this.id = id; if(id != null){ putQueryParameter("Id", id.toString()); } } public String getDai() { return this.dai; } public void setDai(String dai) { this.dai = dai; if(dai != null){ putQueryParameter("Dai", dai); } } public String getLogIp() { return this.logIp; } public void setLogIp(String logIp) { this.logIp = logIp; if(logIp != null){ putQueryParameter("LogIp", logIp); } } @Override public Class<SaveApgroupConfigResponse> getResponseClass() { return SaveApgroupConfigResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model/v20170328/SaveApgroupConfigResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloudwf.model.v20170328; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudwf.transform.v20170328.SaveApgroupConfigResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class SaveApgroupConfigResponse extends AcsResponse { private String requestId; private Boolean success; private String message; private String data; private Integer errorCode; private String errorMsg; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getData() { return this.data; } public void setData(String data) { this.data = data; } public Integer getErrorCode() { return this.errorCode; } public void setErrorCode(Integer errorCode) { this.errorCode = errorCode; } public String getErrorMsg() { return this.errorMsg; } public void setErrorMsg(String errorMsg) { this.errorMsg = errorMsg; } @Override public SaveApgroupConfigResponse getInstance(UnmarshallerContext context) { return SaveApgroupConfigResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model/v20170328/SaveApgroupScanConfigRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloudwf.model.v20170328; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * @version */ public class SaveApgroupScanConfigRequest extends RpcAcsRequest<SaveApgroupScanConfigResponse> { public SaveApgroupScanConfigRequest() { super("cloudwf", "2017-03-28", "SaveApgroupScanConfig", "cloudwf"); } private String jsonData; private Long apgroupId; public String getJsonData() { return this.jsonData; } public void setJsonData(String jsonData) { this.jsonData = jsonData; if(jsonData != null){ putQueryParameter("JsonData", jsonData); } } public Long getApgroupId() { return this.apgroupId; } public void setApgroupId(Long apgroupId) { this.apgroupId = apgroupId; if(apgroupId != null){ putQueryParameter("ApgroupId", apgroupId.toString()); } } @Override public Class<SaveApgroupScanConfigResponse> getResponseClass() { return SaveApgroupScanConfigResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model/v20170328/SaveApgroupScanConfigResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloudwf.model.v20170328; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudwf.transform.v20170328.SaveApgroupScanConfigResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class SaveApgroupScanConfigResponse extends AcsResponse { private String requestId; private Boolean success; private String message; private String data; private Integer errorCode; private String errorMsg; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getData() { return this.data; } public void setData(String data) { this.data = data; } public Integer getErrorCode() { return this.errorCode; } public void setErrorCode(Integer errorCode) { this.errorCode = errorCode; } public String getErrorMsg() { return this.errorMsg; } public void setErrorMsg(String errorMsg) { this.errorMsg = errorMsg; } @Override public SaveApgroupScanConfigResponse getInstance(UnmarshallerContext context) { return SaveApgroupScanConfigResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model/v20170328/SaveApgroupSsidConfigRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloudwf.model.v20170328; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * @version */ public class SaveApgroupSsidConfigRequest extends RpcAcsRequest<SaveApgroupSsidConfigResponse> { public SaveApgroupSsidConfigRequest() { super("cloudwf", "2017-03-28", "SaveApgroupSsidConfig", "cloudwf"); } private String jsonData; public String getJsonData() { return this.jsonData; } public void setJsonData(String jsonData) { this.jsonData = jsonData; if(jsonData != null){ putQueryParameter("JsonData", jsonData); } } @Override public Class<SaveApgroupSsidConfigResponse> getResponseClass() { return SaveApgroupSsidConfigResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model/v20170328/SaveApgroupSsidConfigResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloudwf.model.v20170328; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudwf.transform.v20170328.SaveApgroupSsidConfigResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class SaveApgroupSsidConfigResponse extends AcsResponse { private String requestId; private Boolean success; private String message; private String data; private Integer errorCode; private String errorMsg; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getData() { return this.data; } public void setData(String data) { this.data = data; } public Integer getErrorCode() { return this.errorCode; } public void setErrorCode(Integer errorCode) { this.errorCode = errorCode; } public String getErrorMsg() { return this.errorMsg; } public void setErrorMsg(String errorMsg) { this.errorMsg = errorMsg; } @Override public SaveApgroupSsidConfigResponse getInstance(UnmarshallerContext context) { return SaveApgroupSsidConfigResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model/v20170328/SaveGroupApRadioConfigRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloudwf.model.v20170328; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * @version */ public class SaveGroupApRadioConfigRequest extends RpcAcsRequest<SaveGroupApRadioConfigResponse> { public SaveGroupApRadioConfigRequest() { super("cloudwf", "2017-03-28", "SaveGroupApRadioConfig", "cloudwf"); } private String jsonData; public String getJsonData() { return this.jsonData; } public void setJsonData(String jsonData) { this.jsonData = jsonData; if(jsonData != null){ putQueryParameter("JsonData", jsonData); } } @Override public Class<SaveGroupApRadioConfigResponse> getResponseClass() { return SaveGroupApRadioConfigResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model/v20170328/SaveGroupApRadioConfigResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloudwf.model.v20170328; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudwf.transform.v20170328.SaveGroupApRadioConfigResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class SaveGroupApRadioConfigResponse extends AcsResponse { private String requestId; private Boolean success; private String message; private String data; private Integer errorCode; private String errorMsg; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getData() { return this.data; } public void setData(String data) { this.data = data; } public Integer getErrorCode() { return this.errorCode; } public void setErrorCode(Integer errorCode) { this.errorCode = errorCode; } public String getErrorMsg() { return this.errorMsg; } public void setErrorMsg(String errorMsg) { this.errorMsg = errorMsg; } @Override public SaveGroupApRadioConfigResponse getInstance(UnmarshallerContext context) { return SaveGroupApRadioConfigResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model/v20170328/SavePageConfigTemplateRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloudwf.model.v20170328; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * @version */ public class SavePageConfigTemplateRequest extends RpcAcsRequest<SavePageConfigTemplateResponse> { public SavePageConfigTemplateRequest() { super("cloudwf", "2017-03-28", "SavePageConfigTemplate", "cloudwf"); } private Integer tempType; private String tempDesc; private String tempName; private Long id; private String tempPermission; public Integer getTempType() { return this.tempType; } public void setTempType(Integer tempType) { this.tempType = tempType; if(tempType != null){ putQueryParameter("TempType", tempType.toString()); } } public String getTempDesc() { return this.tempDesc; } public void setTempDesc(String tempDesc) { this.tempDesc = tempDesc; if(tempDesc != null){ putQueryParameter("TempDesc", tempDesc); } } public String getTempName() { return this.tempName; } public void setTempName(String tempName) { this.tempName = tempName; if(tempName != null){ putQueryParameter("TempName", tempName); } } public Long getId() { return this.id; } public void setId(Long id) { this.id = id; if(id != null){ putQueryParameter("Id", id.toString()); } } public String getTempPermission() { return this.tempPermission; } public void setTempPermission(String tempPermission) { this.tempPermission = tempPermission; if(tempPermission != null){ putQueryParameter("TempPermission", tempPermission); } } @Override public Class<SavePageConfigTemplateResponse> getResponseClass() { return SavePageConfigTemplateResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model/v20170328/SavePageConfigTemplateResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloudwf.model.v20170328; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudwf.transform.v20170328.SavePageConfigTemplateResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class SavePageConfigTemplateResponse extends AcsResponse { private String requestId; private Boolean success; private String message; private Integer errorCode; private String errorMsg; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public Integer getErrorCode() { return this.errorCode; } public void setErrorCode(Integer errorCode) { this.errorCode = errorCode; } public String getErrorMsg() { return this.errorMsg; } public void setErrorMsg(String errorMsg) { this.errorMsg = errorMsg; } @Override public SavePageConfigTemplateResponse getInstance(UnmarshallerContext context) { return SavePageConfigTemplateResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model/v20170328/SavePortalConfigRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloudwf.model.v20170328; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * @version */ public class SavePortalConfigRequest extends RpcAcsRequest<SavePortalConfigResponse> { public SavePortalConfigRequest() { super("cloudwf", "2017-03-28", "SavePortalConfig", "cloudwf"); } private String jsonData; public String getJsonData() { return this.jsonData; } public void setJsonData(String jsonData) { this.jsonData = jsonData; if(jsonData != null){ putQueryParameter("JsonData", jsonData); } } @Override public Class<SavePortalConfigResponse> getResponseClass() { return SavePortalConfigResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model/v20170328/SavePortalConfigResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloudwf.model.v20170328; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudwf.transform.v20170328.SavePortalConfigResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class SavePortalConfigResponse extends AcsResponse { private String requestId; private Boolean success; private String message; private String data; private Integer errorCode; private String errorMsg; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getData() { return this.data; } public void setData(String data) { this.data = data; } public Integer getErrorCode() { return this.errorCode; } public void setErrorCode(Integer errorCode) { this.errorCode = errorCode; } public String getErrorMsg() { return this.errorMsg; } public void setErrorMsg(String errorMsg) { this.errorMsg = errorMsg; } @Override public SavePortalConfigResponse getInstance(UnmarshallerContext context) { return SavePortalConfigResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model/v20170328/SavePortalTemplateRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloudwf.model.v20170328; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * @version */ public class SavePortalTemplateRequest extends RpcAcsRequest<SavePortalTemplateResponse> { public SavePortalTemplateRequest() { super("cloudwf", "2017-03-28", "SavePortalTemplate", "cloudwf"); } private String textContent; private String tempName; private String textAlign; private String textColor; private Long id; private Long ossFileId; public String getTextContent() { return this.textContent; } public void setTextContent(String textContent) { this.textContent = textContent; if(textContent != null){ putQueryParameter("TextContent", textContent); } } public String getTempName() { return this.tempName; } public void setTempName(String tempName) { this.tempName = tempName; if(tempName != null){ putQueryParameter("TempName", tempName); } } public String getTextAlign() { return this.textAlign; } public void setTextAlign(String textAlign) { this.textAlign = textAlign; if(textAlign != null){ putQueryParameter("TextAlign", textAlign); } } public String getTextColor() { return this.textColor; } public void setTextColor(String textColor) { this.textColor = textColor; if(textColor != null){ putQueryParameter("TextColor", textColor); } } public Long getId() { return this.id; } public void setId(Long id) { this.id = id; if(id != null){ putQueryParameter("Id", id.toString()); } } public Long getOssFileId() { return this.ossFileId; } public void setOssFileId(Long ossFileId) { this.ossFileId = ossFileId; if(ossFileId != null){ putQueryParameter("OssFileId", ossFileId.toString()); } } @Override public Class<SavePortalTemplateResponse> getResponseClass() { return SavePortalTemplateResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model/v20170328/SavePortalTemplateResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloudwf.model.v20170328; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudwf.transform.v20170328.SavePortalTemplateResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class SavePortalTemplateResponse extends AcsResponse { private String requestId; private Boolean success; private String message; private Integer errorCode; private String errorMsg; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public Integer getErrorCode() { return this.errorCode; } public void setErrorCode(Integer errorCode) { this.errorCode = errorCode; } public String getErrorMsg() { return this.errorMsg; } public void setErrorMsg(String errorMsg) { this.errorMsg = errorMsg; } @Override public SavePortalTemplateResponse getInstance(UnmarshallerContext context) { return SavePortalTemplateResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model/v20170328/SaveProbeDataSubscriberRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloudwf.model.v20170328; import com.aliyuncs.RpcAcsRequest; import java.util.List; /** * @author auto create * @version */ public class SaveProbeDataSubscriberRequest extends RpcAcsRequest<SaveProbeDataSubscriberResponse> { public SaveProbeDataSubscriberRequest() { super("cloudwf", "2017-03-28", "SaveProbeDataSubscriber", "cloudwf"); } private String apiUrl; private String paramGenScript; private String name; private String httpMethod; private String description; private Long id; private Integer type; private List<Long> resourceIdss; public String getApiUrl() { return this.apiUrl; } public void setApiUrl(String apiUrl) { this.apiUrl = apiUrl; if(apiUrl != null){ putQueryParameter("ApiUrl", apiUrl); } } public String getParamGenScript() { return this.paramGenScript; } public void setParamGenScript(String paramGenScript) { this.paramGenScript = paramGenScript; if(paramGenScript != null){ putQueryParameter("ParamGenScript", paramGenScript); } } public String getName() { return this.name; } public void setName(String name) { this.name = name; if(name != null){ putQueryParameter("Name", name); } } public String getHttpMethod() { return this.httpMethod; } public void setHttpMethod(String httpMethod) { this.httpMethod = httpMethod; if(httpMethod != null){ putQueryParameter("HttpMethod", httpMethod); } } public String getDescription() { return this.description; } public void setDescription(String description) { this.description = description; if(description != null){ putQueryParameter("Description", description); } } public Long getId() { return this.id; } public void setId(Long id) { this.id = id; if(id != null){ putQueryParameter("Id", id.toString()); } } public Integer getType() { return this.type; } public void setType(Integer type) { this.type = type; if(type != null){ putQueryParameter("Type", type.toString()); } } public List<Long> getResourceIdss() { return this.resourceIdss; } public void setResourceIdss(List<Long> resourceIdss) { this.resourceIdss = resourceIdss; if (resourceIdss != null) { for (int i = 0; i < resourceIdss.size(); i++) { putQueryParameter("ResourceIds." + (i + 1) , resourceIdss.get(i)); } } } @Override public Class<SaveProbeDataSubscriberResponse> getResponseClass() { return SaveProbeDataSubscriberResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model/v20170328/SaveProbeDataSubscriberResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloudwf.model.v20170328; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudwf.transform.v20170328.SaveProbeDataSubscriberResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class SaveProbeDataSubscriberResponse extends AcsResponse { private String requestId; private Boolean success; private String message; private String data; private Integer errorCode; private String errorMsg; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getData() { return this.data; } public void setData(String data) { this.data = data; } public Integer getErrorCode() { return this.errorCode; } public void setErrorCode(Integer errorCode) { this.errorCode = errorCode; } public String getErrorMsg() { return this.errorMsg; } public void setErrorMsg(String errorMsg) { this.errorMsg = errorMsg; } @Override public SaveProbeDataSubscriberResponse getInstance(UnmarshallerContext context) { return SaveProbeDataSubscriberResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model/v20170328/SaveStaStatusRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloudwf.model.v20170328; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * @version */ public class SaveStaStatusRequest extends RpcAcsRequest<SaveStaStatusResponse> { public SaveStaStatusRequest() { super("cloudwf", "2017-03-28", "SaveStaStatus", "cloudwf"); } private String description; private Long id; public String getDescription() { return this.description; } public void setDescription(String description) { this.description = description; if(description != null){ putQueryParameter("Description", description); } } public Long getId() { return this.id; } public void setId(Long id) { this.id = id; if(id != null){ putQueryParameter("Id", id.toString()); } } @Override public Class<SaveStaStatusResponse> getResponseClass() { return SaveStaStatusResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model/v20170328/SaveStaStatusResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloudwf.model.v20170328; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudwf.transform.v20170328.SaveStaStatusResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class SaveStaStatusResponse extends AcsResponse { private String requestId; private Boolean success; private String message; private Integer errorCode; private String errorMsg; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public Integer getErrorCode() { return this.errorCode; } public void setErrorCode(Integer errorCode) { this.errorCode = errorCode; } public String getErrorMsg() { return this.errorMsg; } public void setErrorMsg(String errorMsg) { this.errorMsg = errorMsg; } @Override public SaveStaStatusResponse getInstance(UnmarshallerContext context) { return SaveStaStatusResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model/v20170328/SaveUmengPagePermission4RootRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloudwf.model.v20170328; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * @version */ public class SaveUmengPagePermission4RootRequest extends RpcAcsRequest<SaveUmengPagePermission4RootResponse> { public SaveUmengPagePermission4RootRequest() { super("cloudwf", "2017-03-28", "SaveUmengPagePermission4Root", "cloudwf"); } private String gsPermission; private Long aliyunPk; private Long pagePermission; private Long id; private Long bid; public String getGsPermission() { return this.gsPermission; } public void setGsPermission(String gsPermission) { this.gsPermission = gsPermission; if(gsPermission != null){ putQueryParameter("GsPermission", gsPermission); } } public Long getAliyunPk() { return this.aliyunPk; } public void setAliyunPk(Long aliyunPk) { this.aliyunPk = aliyunPk; if(aliyunPk != null){ putQueryParameter("AliyunPk", aliyunPk.toString()); } } public Long getPagePermission() { return this.pagePermission; } public void setPagePermission(Long pagePermission) { this.pagePermission = pagePermission; if(pagePermission != null){ putQueryParameter("PagePermission", pagePermission.toString()); } } public Long getId() { return this.id; } public void setId(Long id) { this.id = id; if(id != null){ putQueryParameter("Id", id.toString()); } } public Long getBid() { return this.bid; } public void setBid(Long bid) { this.bid = bid; if(bid != null){ putQueryParameter("Bid", bid.toString()); } } @Override public Class<SaveUmengPagePermission4RootResponse> getResponseClass() { return SaveUmengPagePermission4RootResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model/v20170328/SaveUmengPagePermission4RootResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloudwf.model.v20170328; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudwf.transform.v20170328.SaveUmengPagePermission4RootResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class SaveUmengPagePermission4RootResponse extends AcsResponse { private String requestId; private Boolean success; private String message; private Integer errorCode; private String errorMsg; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public Integer getErrorCode() { return this.errorCode; } public void setErrorCode(Integer errorCode) { this.errorCode = errorCode; } public String getErrorMsg() { return this.errorMsg; } public void setErrorMsg(String errorMsg) { this.errorMsg = errorMsg; } @Override public SaveUmengPagePermission4RootResponse getInstance(UnmarshallerContext context) { return SaveUmengPagePermission4RootResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model/v20170328/SendCommandByMacRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloudwf.model.v20170328; import com.aliyuncs.RpcAcsRequest; import java.util.List; /** * @author auto create * @version */ public class SendCommandByMacRequest extends RpcAcsRequest<SendCommandByMacResponse> { public SendCommandByMacRequest() { super("cloudwf", "2017-03-28", "SendCommandByMac", "cloudwf"); } private List<String> macLists; private String command; public List<String> getMacLists() { return this.macLists; } public void setMacLists(List<String> macLists) { this.macLists = macLists; if (macLists != null) { for (int i = 0; i < macLists.size(); i++) { putQueryParameter("MacList." + (i + 1) , macLists.get(i)); } } } public String getCommand() { return this.command; } public void setCommand(String command) { this.command = command; if(command != null){ putQueryParameter("Command", command); } } @Override public Class<SendCommandByMacResponse> getResponseClass() { return SendCommandByMacResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model/v20170328/SendCommandByMacResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloudwf.model.v20170328; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudwf.transform.v20170328.SendCommandByMacResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class SendCommandByMacResponse extends AcsResponse { private String requestId; private Boolean success; private String data; private String message; private Integer errorCode; private String errorMsg; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getData() { return this.data; } public void setData(String data) { this.data = data; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public Integer getErrorCode() { return this.errorCode; } public void setErrorCode(Integer errorCode) { this.errorCode = errorCode; } public String getErrorMsg() { return this.errorMsg; } public void setErrorMsg(String errorMsg) { this.errorMsg = errorMsg; } @Override public SendCommandByMacResponse getInstance(UnmarshallerContext context) { return SendCommandByMacResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model/v20170328/SetScanModeRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloudwf.model.v20170328; import com.aliyuncs.RpcAcsRequest; import java.util.List; /** * @author auto create * @version */ public class SetScanModeRequest extends RpcAcsRequest<SetScanModeResponse> { public SetScanModeRequest() { super("cloudwf", "2017-03-28", "SetScanMode", "cloudwf"); } private Integer operation; private List<String> macLists; public Integer getOperation() { return this.operation; } public void setOperation(Integer operation) { this.operation = operation; if(operation != null){ putQueryParameter("Operation", operation.toString()); } } public List<String> getMacLists() { return this.macLists; } public void setMacLists(List<String> macLists) { this.macLists = macLists; if (macLists != null) { for (int i = 0; i < macLists.size(); i++) { putQueryParameter("MacList." + (i + 1) , macLists.get(i)); } } } @Override public Class<SetScanModeResponse> getResponseClass() { return SetScanModeResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model/v20170328/SetScanModeResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloudwf.model.v20170328; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudwf.transform.v20170328.SetScanModeResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class SetScanModeResponse extends AcsResponse { private String requestId; private Boolean success; private String message; private String data; private Integer errorCode; private String errorMsg; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getData() { return this.data; } public void setData(String data) { this.data = data; } public Integer getErrorCode() { return this.errorCode; } public void setErrorCode(Integer errorCode) { this.errorCode = errorCode; } public String getErrorMsg() { return this.errorMsg; } public void setErrorMsg(String errorMsg) { this.errorMsg = errorMsg; } @Override public SetScanModeResponse getInstance(UnmarshallerContext context) { return SetScanModeResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model/v20170328/SetUpgradeImgByModelRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloudwf.model.v20170328; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * @version */ public class SetUpgradeImgByModelRequest extends RpcAcsRequest<SetUpgradeImgByModelResponse> { public SetUpgradeImgByModelRequest() { super("cloudwf", "2017-03-28", "SetUpgradeImgByModel", "cloudwf"); } private String imgAddr; private String imgVersion; private Long apModelId; private String comment; public String getImgAddr() { return this.imgAddr; } public void setImgAddr(String imgAddr) { this.imgAddr = imgAddr; if(imgAddr != null){ putQueryParameter("ImgAddr", imgAddr); } } public String getImgVersion() { return this.imgVersion; } public void setImgVersion(String imgVersion) { this.imgVersion = imgVersion; if(imgVersion != null){ putQueryParameter("ImgVersion", imgVersion); } } public Long getApModelId() { return this.apModelId; } public void setApModelId(Long apModelId) { this.apModelId = apModelId; if(apModelId != null){ putQueryParameter("ApModelId", apModelId.toString()); } } public String getComment() { return this.comment; } public void setComment(String comment) { this.comment = comment; if(comment != null){ putQueryParameter("Comment", comment); } } @Override public Class<SetUpgradeImgByModelResponse> getResponseClass() { return SetUpgradeImgByModelResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model/v20170328/SetUpgradeImgByModelResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloudwf.model.v20170328; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudwf.transform.v20170328.SetUpgradeImgByModelResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class SetUpgradeImgByModelResponse extends AcsResponse { private String requestId; private Boolean success; private String data; private String message; private Integer errorCode; private String errorMsg; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getData() { return this.data; } public void setData(String data) { this.data = data; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public Integer getErrorCode() { return this.errorCode; } public void setErrorCode(Integer errorCode) { this.errorCode = errorCode; } public String getErrorMsg() { return this.errorMsg; } public void setErrorMsg(String errorMsg) { this.errorMsg = errorMsg; } @Override public SetUpgradeImgByModelResponse getInstance(UnmarshallerContext context) { return SetUpgradeImgByModelResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model/v20170328/ShopActionCustomeRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloudwf.model.v20170328; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * @version */ public class ShopActionCustomeRequest extends RpcAcsRequest<ShopActionCustomeResponse> { public ShopActionCustomeRequest() { super("cloudwf", "2017-03-28", "ShopActionCustome", "cloudwf"); } private Long gsid; public Long getGsid() { return this.gsid; } public void setGsid(Long gsid) { this.gsid = gsid; if(gsid != null){ putQueryParameter("Gsid", gsid.toString()); } } @Override public Class<ShopActionCustomeResponse> getResponseClass() { return ShopActionCustomeResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model/v20170328/ShopActionCustomeResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloudwf.model.v20170328; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudwf.transform.v20170328.ShopActionCustomeResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ShopActionCustomeResponse extends AcsResponse { private Boolean success; private String data; private Integer errorCode; private String errorMsg; public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getData() { return this.data; } public void setData(String data) { this.data = data; } public Integer getErrorCode() { return this.errorCode; } public void setErrorCode(Integer errorCode) { this.errorCode = errorCode; } public String getErrorMsg() { return this.errorMsg; } public void setErrorMsg(String errorMsg) { this.errorMsg = errorMsg; } @Override public ShopActionCustomeResponse getInstance(UnmarshallerContext context) { return ShopActionCustomeResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model/v20170328/ShopActionReturningRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloudwf.model.v20170328; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * @version */ public class ShopActionReturningRequest extends RpcAcsRequest<ShopActionReturningResponse> { public ShopActionReturningRequest() { super("cloudwf", "2017-03-28", "ShopActionReturning", "cloudwf"); } private Long gsid; public Long getGsid() { return this.gsid; } public void setGsid(Long gsid) { this.gsid = gsid; if(gsid != null){ putQueryParameter("Gsid", gsid.toString()); } } @Override public Class<ShopActionReturningResponse> getResponseClass() { return ShopActionReturningResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model/v20170328/ShopActionReturningResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloudwf.model.v20170328; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudwf.transform.v20170328.ShopActionReturningResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ShopActionReturningResponse extends AcsResponse { private Boolean success; private String data; private Integer errorCode; private String errorMsg; public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getData() { return this.data; } public void setData(String data) { this.data = data; } public Integer getErrorCode() { return this.errorCode; } public void setErrorCode(Integer errorCode) { this.errorCode = errorCode; } public String getErrorMsg() { return this.errorMsg; } public void setErrorMsg(String errorMsg) { this.errorMsg = errorMsg; } @Override public ShopActionReturningResponse getInstance(UnmarshallerContext context) { return ShopActionReturningResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model/v20170328/ShopCameraRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloudwf.model.v20170328; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * @version */ public class ShopCameraRequest extends RpcAcsRequest<ShopCameraResponse> { public ShopCameraRequest() { super("cloudwf", "2017-03-28", "ShopCamera", "cloudwf"); } private Long gsid; public Long getGsid() { return this.gsid; } public void setGsid(Long gsid) { this.gsid = gsid; if(gsid != null){ putQueryParameter("Gsid", gsid.toString()); } } @Override public Class<ShopCameraResponse> getResponseClass() { return ShopCameraResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model/v20170328/ShopCameraResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloudwf.model.v20170328; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudwf.transform.v20170328.ShopCameraResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ShopCameraResponse extends AcsResponse { private Boolean success; private String data; private Integer errorCode; private String errorMsg; public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getData() { return this.data; } public void setData(String data) { this.data = data; } public Integer getErrorCode() { return this.errorCode; } public void setErrorCode(Integer errorCode) { this.errorCode = errorCode; } public String getErrorMsg() { return this.errorMsg; } public void setErrorMsg(String errorMsg) { this.errorMsg = errorMsg; } @Override public ShopCameraResponse getInstance(UnmarshallerContext context) { return ShopCameraResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model/v20170328/ShopCreateRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloudwf.model.v20170328; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * @version */ public class ShopCreateRequest extends RpcAcsRequest<ShopCreateResponse> { public ShopCreateRequest() { super("cloudwf", "2017-03-28", "ShopCreate", "cloudwf"); } private String shopCoordinate; private String shopProvince; private Integer shopTopType; private String shopAddress; private Integer shopType; private String warnEmail; private String shopTel; private String warnpHone; private Integer warn; private Integer shopArea; private String shopRemarks; private String shopCity; private Integer shopSubtype; private String shopBrand; private String shopName; private Integer shopCloseWarn; private Long bid; private String shopManager; private String shopBusinessHours; public String getShopCoordinate() { return this.shopCoordinate; } public void setShopCoordinate(String shopCoordinate) { this.shopCoordinate = shopCoordinate; if(shopCoordinate != null){ putQueryParameter("ShopCoordinate", shopCoordinate); } } public String getShopProvince() { return this.shopProvince; } public void setShopProvince(String shopProvince) { this.shopProvince = shopProvince; if(shopProvince != null){ putQueryParameter("ShopProvince", shopProvince); } } public Integer getShopTopType() { return this.shopTopType; } public void setShopTopType(Integer shopTopType) { this.shopTopType = shopTopType; if(shopTopType != null){ putQueryParameter("ShopTopType", shopTopType.toString()); } } public String getShopAddress() { return this.shopAddress; } public void setShopAddress(String shopAddress) { this.shopAddress = shopAddress; if(shopAddress != null){ putQueryParameter("ShopAddress", shopAddress); } } public Integer getShopType() { return this.shopType; } public void setShopType(Integer shopType) { this.shopType = shopType; if(shopType != null){ putQueryParameter("ShopType", shopType.toString()); } } public String getWarnEmail() { return this.warnEmail; } public void setWarnEmail(String warnEmail) { this.warnEmail = warnEmail; if(warnEmail != null){ putQueryParameter("WarnEmail", warnEmail); } } public String getShopTel() { return this.shopTel; } public void setShopTel(String shopTel) { this.shopTel = shopTel; if(shopTel != null){ putQueryParameter("ShopTel", shopTel); } } public String getWarnpHone() { return this.warnpHone; } public void setWarnpHone(String warnpHone) { this.warnpHone = warnpHone; if(warnpHone != null){ putQueryParameter("WarnpHone", warnpHone); } } public Integer getWarn() { return this.warn; } public void setWarn(Integer warn) { this.warn = warn; if(warn != null){ putQueryParameter("Warn", warn.toString()); } } public Integer getShopArea() { return this.shopArea; } public void setShopArea(Integer shopArea) { this.shopArea = shopArea; if(shopArea != null){ putQueryParameter("ShopArea", shopArea.toString()); } } public String getShopRemarks() { return this.shopRemarks; } public void setShopRemarks(String shopRemarks) { this.shopRemarks = shopRemarks; if(shopRemarks != null){ putQueryParameter("ShopRemarks", shopRemarks); } } public String getShopCity() { return this.shopCity; } public void setShopCity(String shopCity) { this.shopCity = shopCity; if(shopCity != null){ putQueryParameter("ShopCity", shopCity); } } public Integer getShopSubtype() { return this.shopSubtype; } public void setShopSubtype(Integer shopSubtype) { this.shopSubtype = shopSubtype; if(shopSubtype != null){ putQueryParameter("ShopSubtype", shopSubtype.toString()); } } public String getShopBrand() { return this.shopBrand; } public void setShopBrand(String shopBrand) { this.shopBrand = shopBrand; if(shopBrand != null){ putQueryParameter("ShopBrand", shopBrand); } } public String getShopName() { return this.shopName; } public void setShopName(String shopName) { this.shopName = shopName; if(shopName != null){ putQueryParameter("ShopName", shopName); } } public Integer getShopCloseWarn() { return this.shopCloseWarn; } public void setShopCloseWarn(Integer shopCloseWarn) { this.shopCloseWarn = shopCloseWarn; if(shopCloseWarn != null){ putQueryParameter("ShopCloseWarn", shopCloseWarn.toString()); } } public Long getBid() { return this.bid; } public void setBid(Long bid) { this.bid = bid; if(bid != null){ putQueryParameter("Bid", bid.toString()); } } public String getShopManager() { return this.shopManager; } public void setShopManager(String shopManager) { this.shopManager = shopManager; if(shopManager != null){ putQueryParameter("ShopManager", shopManager); } } public String getShopBusinessHours() { return this.shopBusinessHours; } public void setShopBusinessHours(String shopBusinessHours) { this.shopBusinessHours = shopBusinessHours; if(shopBusinessHours != null){ putQueryParameter("ShopBusinessHours", shopBusinessHours); } } @Override public Class<ShopCreateResponse> getResponseClass() { return ShopCreateResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model/v20170328/ShopCreateResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloudwf.model.v20170328; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudwf.transform.v20170328.ShopCreateResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ShopCreateResponse extends AcsResponse { private Boolean success; private String data; private Integer errorCode; private String errorMsg; public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getData() { return this.data; } public void setData(String data) { this.data = data; } public Integer getErrorCode() { return this.errorCode; } public void setErrorCode(Integer errorCode) { this.errorCode = errorCode; } public String getErrorMsg() { return this.errorMsg; } public void setErrorMsg(String errorMsg) { this.errorMsg = errorMsg; } @Override public ShopCreateResponse getInstance(UnmarshallerContext context) { return ShopCreateResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model/v20170328/ShopCreatemarketingRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloudwf.model.v20170328; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * @version */ public class ShopCreatemarketingRequest extends RpcAcsRequest<ShopCreatemarketingResponse> { public ShopCreatemarketingRequest() { super("cloudwf", "2017-03-28", "ShopCreatemarketing", "cloudwf"); } private String etime; private String name; private String stime; private Long sid; public String getEtime() { return this.etime; } public void setEtime(String etime) { this.etime = etime; if(etime != null){ putQueryParameter("Etime", etime); } } public String getName() { return this.name; } public void setName(String name) { this.name = name; if(name != null){ putQueryParameter("Name", name); } } public String getStime() { return this.stime; } public void setStime(String stime) { this.stime = stime; if(stime != null){ putQueryParameter("Stime", stime); } } public Long getSid() { return this.sid; } public void setSid(Long sid) { this.sid = sid; if(sid != null){ putQueryParameter("Sid", sid.toString()); } } @Override public Class<ShopCreatemarketingResponse> getResponseClass() { return ShopCreatemarketingResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model/v20170328/ShopCreatemarketingResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloudwf.model.v20170328; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudwf.transform.v20170328.ShopCreatemarketingResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ShopCreatemarketingResponse extends AcsResponse { private Boolean success; private String data; private Integer errorCode; private String errorMsg; public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getData() { return this.data; } public void setData(String data) { this.data = data; } public Integer getErrorCode() { return this.errorCode; } public void setErrorCode(Integer errorCode) { this.errorCode = errorCode; } public String getErrorMsg() { return this.errorMsg; } public void setErrorMsg(String errorMsg) { this.errorMsg = errorMsg; } @Override public ShopCreatemarketingResponse getInstance(UnmarshallerContext context) { return ShopCreatemarketingResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model/v20170328/ShopDataAlarmRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloudwf.model.v20170328; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * @version */ public class ShopDataAlarmRequest extends RpcAcsRequest<ShopDataAlarmResponse> { public ShopDataAlarmRequest() { super("cloudwf", "2017-03-28", "ShopDataAlarm", "cloudwf"); } private String warnPhone; private Integer warn; private Integer closeWarn; private String warnEmail; private Long sid; public String getWarnPhone() { return this.warnPhone; } public void setWarnPhone(String warnPhone) { this.warnPhone = warnPhone; if(warnPhone != null){ putQueryParameter("WarnPhone", warnPhone); } } public Integer getWarn() { return this.warn; } public void setWarn(Integer warn) { this.warn = warn; if(warn != null){ putQueryParameter("Warn", warn.toString()); } } public Integer getCloseWarn() { return this.closeWarn; } public void setCloseWarn(Integer closeWarn) { this.closeWarn = closeWarn; if(closeWarn != null){ putQueryParameter("CloseWarn", closeWarn.toString()); } } public String getWarnEmail() { return this.warnEmail; } public void setWarnEmail(String warnEmail) { this.warnEmail = warnEmail; if(warnEmail != null){ putQueryParameter("WarnEmail", warnEmail); } } public Long getSid() { return this.sid; } public void setSid(Long sid) { this.sid = sid; if(sid != null){ putQueryParameter("Sid", sid.toString()); } } @Override public Class<ShopDataAlarmResponse> getResponseClass() { return ShopDataAlarmResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model/v20170328/ShopDataAlarmResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloudwf.model.v20170328; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudwf.transform.v20170328.ShopDataAlarmResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ShopDataAlarmResponse extends AcsResponse { private Boolean success; private String data; private Integer errorCode; private String errorMsg; public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getData() { return this.data; } public void setData(String data) { this.data = data; } public Integer getErrorCode() { return this.errorCode; } public void setErrorCode(Integer errorCode) { this.errorCode = errorCode; } public String getErrorMsg() { return this.errorMsg; } public void setErrorMsg(String errorMsg) { this.errorMsg = errorMsg; } @Override public ShopDataAlarmResponse getInstance(UnmarshallerContext context) { return ShopDataAlarmResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model/v20170328/ShopDeleteRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloudwf.model.v20170328; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * @version */ public class ShopDeleteRequest extends RpcAcsRequest<ShopDeleteResponse> { public ShopDeleteRequest() { super("cloudwf", "2017-03-28", "ShopDelete", "cloudwf"); } private Long sid; public Long getSid() { return this.sid; } public void setSid(Long sid) { this.sid = sid; if(sid != null){ putQueryParameter("Sid", sid.toString()); } } @Override public Class<ShopDeleteResponse> getResponseClass() { return ShopDeleteResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model/v20170328/ShopDeleteResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloudwf.model.v20170328; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudwf.transform.v20170328.ShopDeleteResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ShopDeleteResponse extends AcsResponse { private Boolean success; private String data; private Integer errorCode; private String errorMsg; public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getData() { return this.data; } public void setData(String data) { this.data = data; } public Integer getErrorCode() { return this.errorCode; } public void setErrorCode(Integer errorCode) { this.errorCode = errorCode; } public String getErrorMsg() { return this.errorMsg; } public void setErrorMsg(String errorMsg) { this.errorMsg = errorMsg; } @Override public ShopDeleteResponse getInstance(UnmarshallerContext context) { return ShopDeleteResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model/v20170328/ShopDeletemarketingRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloudwf.model.v20170328; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * @version */ public class ShopDeletemarketingRequest extends RpcAcsRequest<ShopDeletemarketingResponse> { public ShopDeletemarketingRequest() { super("cloudwf", "2017-03-28", "ShopDeletemarketing", "cloudwf"); } private Long id; private Long sid; public Long getId() { return this.id; } public void setId(Long id) { this.id = id; if(id != null){ putQueryParameter("Id", id.toString()); } } public Long getSid() { return this.sid; } public void setSid(Long sid) { this.sid = sid; if(sid != null){ putQueryParameter("Sid", sid.toString()); } } @Override public Class<ShopDeletemarketingResponse> getResponseClass() { return ShopDeletemarketingResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model/v20170328/ShopDeletemarketingResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloudwf.model.v20170328; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudwf.transform.v20170328.ShopDeletemarketingResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ShopDeletemarketingResponse extends AcsResponse { private Boolean success; private String data; private Integer errorCode; private String errorMsg; public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getData() { return this.data; } public void setData(String data) { this.data = data; } public Integer getErrorCode() { return this.errorCode; } public void setErrorCode(Integer errorCode) { this.errorCode = errorCode; } public String getErrorMsg() { return this.errorMsg; } public void setErrorMsg(String errorMsg) { this.errorMsg = errorMsg; } @Override public ShopDeletemarketingResponse getInstance(UnmarshallerContext context) { return ShopDeletemarketingResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model/v20170328/ShopGetfiltermacRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloudwf.model.v20170328; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * @version */ public class ShopGetfiltermacRequest extends RpcAcsRequest<ShopGetfiltermacResponse> { public ShopGetfiltermacRequest() { super("cloudwf", "2017-03-28", "ShopGetfiltermac", "cloudwf"); } private Long sid; public Long getSid() { return this.sid; } public void setSid(Long sid) { this.sid = sid; if(sid != null){ putQueryParameter("Sid", sid.toString()); } } @Override public Class<ShopGetfiltermacResponse> getResponseClass() { return ShopGetfiltermacResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model/v20170328/ShopGetfiltermacResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloudwf.model.v20170328; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudwf.transform.v20170328.ShopGetfiltermacResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ShopGetfiltermacResponse extends AcsResponse { private Boolean success; private String data; private Integer errorCode; private String errorMsg; public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getData() { return this.data; } public void setData(String data) { this.data = data; } public Integer getErrorCode() { return this.errorCode; } public void setErrorCode(Integer errorCode) { this.errorCode = errorCode; } public String getErrorMsg() { return this.errorMsg; } public void setErrorMsg(String errorMsg) { this.errorMsg = errorMsg; } @Override public ShopGetfiltermacResponse getInstance(UnmarshallerContext context) { return ShopGetfiltermacResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model/v20170328/ShopGetredressRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloudwf.model.v20170328; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * @version */ public class ShopGetredressRequest extends RpcAcsRequest<ShopGetredressResponse> { public ShopGetredressRequest() { super("cloudwf", "2017-03-28", "ShopGetredress", "cloudwf"); } private Long sid; public Long getSid() { return this.sid; } public void setSid(Long sid) { this.sid = sid; if(sid != null){ putQueryParameter("Sid", sid.toString()); } } @Override public Class<ShopGetredressResponse> getResponseClass() { return ShopGetredressResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model/v20170328/ShopGetredressResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloudwf.model.v20170328; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudwf.transform.v20170328.ShopGetredressResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ShopGetredressResponse extends AcsResponse { private Boolean success; private String data; private Integer errorCode; private String errorMsg; public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getData() { return this.data; } public void setData(String data) { this.data = data; } public Integer getErrorCode() { return this.errorCode; } public void setErrorCode(Integer errorCode) { this.errorCode = errorCode; } public String getErrorMsg() { return this.errorMsg; } public void setErrorMsg(String errorMsg) { this.errorMsg = errorMsg; } @Override public ShopGetredressResponse getInstance(UnmarshallerContext context) { return ShopGetredressResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model/v20170328/ShopGroupCreateRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloudwf.model.v20170328; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * @version */ public class ShopGroupCreateRequest extends RpcAcsRequest<ShopGroupCreateResponse> { public ShopGroupCreateRequest() { super("cloudwf", "2017-03-28", "ShopGroupCreate", "cloudwf"); } private String shopIds; private String name; private String description; private Long bid; public String getShopIds() { return this.shopIds; } public void setShopIds(String shopIds) { this.shopIds = shopIds; if(shopIds != null){ putQueryParameter("ShopIds", shopIds); } } public String getName() { return this.name; } public void setName(String name) { this.name = name; if(name != null){ putQueryParameter("Name", name); } } public String getDescription() { return this.description; } public void setDescription(String description) { this.description = description; if(description != null){ putQueryParameter("Description", description); } } public Long getBid() { return this.bid; } public void setBid(Long bid) { this.bid = bid; if(bid != null){ putQueryParameter("Bid", bid.toString()); } } @Override public Class<ShopGroupCreateResponse> getResponseClass() { return ShopGroupCreateResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model/v20170328/ShopGroupCreateResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloudwf.model.v20170328; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudwf.transform.v20170328.ShopGroupCreateResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ShopGroupCreateResponse extends AcsResponse { private Boolean success; private String data; private Integer errorCode; private String errorMsg; public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getData() { return this.data; } public void setData(String data) { this.data = data; } public Integer getErrorCode() { return this.errorCode; } public void setErrorCode(Integer errorCode) { this.errorCode = errorCode; } public String getErrorMsg() { return this.errorMsg; } public void setErrorMsg(String errorMsg) { this.errorMsg = errorMsg; } @Override public ShopGroupCreateResponse getInstance(UnmarshallerContext context) { return ShopGroupCreateResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model/v20170328/ShopGroupDeleteRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloudwf.model.v20170328; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * @version */ public class ShopGroupDeleteRequest extends RpcAcsRequest<ShopGroupDeleteResponse> { public ShopGroupDeleteRequest() { super("cloudwf", "2017-03-28", "ShopGroupDelete", "cloudwf"); } private Long gid; public Long getGid() { return this.gid; } public void setGid(Long gid) { this.gid = gid; if(gid != null){ putQueryParameter("Gid", gid.toString()); } } @Override public Class<ShopGroupDeleteResponse> getResponseClass() { return ShopGroupDeleteResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model/v20170328/ShopGroupDeleteResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloudwf.model.v20170328; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudwf.transform.v20170328.ShopGroupDeleteResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ShopGroupDeleteResponse extends AcsResponse { private Boolean success; private String data; private Integer errorCode; private String errorMsg; public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getData() { return this.data; } public void setData(String data) { this.data = data; } public Integer getErrorCode() { return this.errorCode; } public void setErrorCode(Integer errorCode) { this.errorCode = errorCode; } public String getErrorMsg() { return this.errorMsg; } public void setErrorMsg(String errorMsg) { this.errorMsg = errorMsg; } @Override public ShopGroupDeleteResponse getInstance(UnmarshallerContext context) { return ShopGroupDeleteResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model/v20170328/ShopGroupInfoRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloudwf.model.v20170328; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * @version */ public class ShopGroupInfoRequest extends RpcAcsRequest<ShopGroupInfoResponse> { public ShopGroupInfoRequest() { super("cloudwf", "2017-03-28", "ShopGroupInfo", "cloudwf"); } private Long gid; public Long getGid() { return this.gid; } public void setGid(Long gid) { this.gid = gid; if(gid != null){ putQueryParameter("Gid", gid.toString()); } } @Override public Class<ShopGroupInfoResponse> getResponseClass() { return ShopGroupInfoResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model/v20170328/ShopGroupInfoResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloudwf.model.v20170328; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudwf.transform.v20170328.ShopGroupInfoResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ShopGroupInfoResponse extends AcsResponse { private Boolean success; private String data; private Integer errorCode; private String errorMsg; public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getData() { return this.data; } public void setData(String data) { this.data = data; } public Integer getErrorCode() { return this.errorCode; } public void setErrorCode(Integer errorCode) { this.errorCode = errorCode; } public String getErrorMsg() { return this.errorMsg; } public void setErrorMsg(String errorMsg) { this.errorMsg = errorMsg; } @Override public ShopGroupInfoResponse getInstance(UnmarshallerContext context) { return ShopGroupInfoResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model/v20170328/ShopGroupShowListRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloudwf.model.v20170328; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * @version */ public class ShopGroupShowListRequest extends RpcAcsRequest<ShopGroupShowListResponse> { public ShopGroupShowListRequest() { super("cloudwf", "2017-03-28", "ShopGroupShowList", "cloudwf"); } private Integer page; private Long bid; private Integer per; public Integer getPage() { return this.page; } public void setPage(Integer page) { this.page = page; if(page != null){ putQueryParameter("Page", page.toString()); } } public Long getBid() { return this.bid; } public void setBid(Long bid) { this.bid = bid; if(bid != null){ putQueryParameter("Bid", bid.toString()); } } public Integer getPer() { return this.per; } public void setPer(Integer per) { this.per = per; if(per != null){ putQueryParameter("Per", per.toString()); } } @Override public Class<ShopGroupShowListResponse> getResponseClass() { return ShopGroupShowListResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model/v20170328/ShopGroupShowListResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloudwf.model.v20170328; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudwf.transform.v20170328.ShopGroupShowListResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ShopGroupShowListResponse extends AcsResponse { private Boolean success; private String data; private Integer errorCode; private String errorMsg; public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getData() { return this.data; } public void setData(String data) { this.data = data; } public Integer getErrorCode() { return this.errorCode; } public void setErrorCode(Integer errorCode) { this.errorCode = errorCode; } public String getErrorMsg() { return this.errorMsg; } public void setErrorMsg(String errorMsg) { this.errorMsg = errorMsg; } @Override public ShopGroupShowListResponse getInstance(UnmarshallerContext context) { return ShopGroupShowListResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model/v20170328/ShopGroupUpdateRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloudwf.model.v20170328; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * @version */ public class ShopGroupUpdateRequest extends RpcAcsRequest<ShopGroupUpdateResponse> { public ShopGroupUpdateRequest() { super("cloudwf", "2017-03-28", "ShopGroupUpdate", "cloudwf"); } private Long gid; private String shopIds; private String name; private String description; public Long getGid() { return this.gid; } public void setGid(Long gid) { this.gid = gid; if(gid != null){ putQueryParameter("Gid", gid.toString()); } } public String getShopIds() { return this.shopIds; } public void setShopIds(String shopIds) { this.shopIds = shopIds; if(shopIds != null){ putQueryParameter("ShopIds", shopIds); } } public String getName() { return this.name; } public void setName(String name) { this.name = name; if(name != null){ putQueryParameter("Name", name); } } public String getDescription() { return this.description; } public void setDescription(String description) { this.description = description; if(description != null){ putQueryParameter("Description", description); } } @Override public Class<ShopGroupUpdateResponse> getResponseClass() { return ShopGroupUpdateResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model/v20170328/ShopGroupUpdateResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloudwf.model.v20170328; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudwf.transform.v20170328.ShopGroupUpdateResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ShopGroupUpdateResponse extends AcsResponse { private Boolean success; private String data; private Integer errorCode; private String errorMsg; public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getData() { return this.data; } public void setData(String data) { this.data = data; } public Integer getErrorCode() { return this.errorCode; } public void setErrorCode(Integer errorCode) { this.errorCode = errorCode; } public String getErrorMsg() { return this.errorMsg; } public void setErrorMsg(String errorMsg) { this.errorMsg = errorMsg; } @Override public ShopGroupUpdateResponse getInstance(UnmarshallerContext context) { return ShopGroupUpdateResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model/v20170328/ShopInfoRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloudwf.model.v20170328; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * @version */ public class ShopInfoRequest extends RpcAcsRequest<ShopInfoResponse> { public ShopInfoRequest() { super("cloudwf", "2017-03-28", "ShopInfo", "cloudwf"); } private Long sid; public Long getSid() { return this.sid; } public void setSid(Long sid) { this.sid = sid; if(sid != null){ putQueryParameter("Sid", sid.toString()); } } @Override public Class<ShopInfoResponse> getResponseClass() { return ShopInfoResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model/v20170328/ShopInfoResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloudwf.model.v20170328; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudwf.transform.v20170328.ShopInfoResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ShopInfoResponse extends AcsResponse { private Boolean success; private String data; private Integer errorCode; private String errorMsg; public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getData() { return this.data; } public void setData(String data) { this.data = data; } public Integer getErrorCode() { return this.errorCode; } public void setErrorCode(Integer errorCode) { this.errorCode = errorCode; } public String getErrorMsg() { return this.errorMsg; } public void setErrorMsg(String errorMsg) { this.errorMsg = errorMsg; } @Override public ShopInfoResponse getInstance(UnmarshallerContext context) { return ShopInfoResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model/v20170328/ShopMarketingListRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloudwf.model.v20170328; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * @version */ public class ShopMarketingListRequest extends RpcAcsRequest<ShopMarketingListResponse> { public ShopMarketingListRequest() { super("cloudwf", "2017-03-28", "ShopMarketingList", "cloudwf"); } private String name; private Integer page; private Integer per; private Long sid; public String getName() { return this.name; } public void setName(String name) { this.name = name; if(name != null){ putQueryParameter("Name", name); } } public Integer getPage() { return this.page; } public void setPage(Integer page) { this.page = page; if(page != null){ putQueryParameter("Page", page.toString()); } } public Integer getPer() { return this.per; } public void setPer(Integer per) { this.per = per; if(per != null){ putQueryParameter("Per", per.toString()); } } public Long getSid() { return this.sid; } public void setSid(Long sid) { this.sid = sid; if(sid != null){ putQueryParameter("Sid", sid.toString()); } } @Override public Class<ShopMarketingListResponse> getResponseClass() { return ShopMarketingListResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model/v20170328/ShopMarketingListResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloudwf.model.v20170328; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudwf.transform.v20170328.ShopMarketingListResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ShopMarketingListResponse extends AcsResponse { private Boolean success; private String data; private Integer errorCode; private String errorMsg; public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getData() { return this.data; } public void setData(String data) { this.data = data; } public Integer getErrorCode() { return this.errorCode; } public void setErrorCode(Integer errorCode) { this.errorCode = errorCode; } public String getErrorMsg() { return this.errorMsg; } public void setErrorMsg(String errorMsg) { this.errorMsg = errorMsg; } @Override public ShopMarketingListResponse getInstance(UnmarshallerContext context) { return ShopMarketingListResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model/v20170328/ShopOverviewRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloudwf.model.v20170328; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * @version */ public class ShopOverviewRequest extends RpcAcsRequest<ShopOverviewResponse> { public ShopOverviewRequest() { super("cloudwf", "2017-03-28", "ShopOverview", "cloudwf"); } private Long gsid; public Long getGsid() { return this.gsid; } public void setGsid(Long gsid) { this.gsid = gsid; if(gsid != null){ putQueryParameter("Gsid", gsid.toString()); } } @Override public Class<ShopOverviewResponse> getResponseClass() { return ShopOverviewResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model/v20170328/ShopOverviewResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloudwf.model.v20170328; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudwf.transform.v20170328.ShopOverviewResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ShopOverviewResponse extends AcsResponse { private Boolean success; private String data; private Integer errorCode; private String errorMsg; public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getData() { return this.data; } public void setData(String data) { this.data = data; } public Integer getErrorCode() { return this.errorCode; } public void setErrorCode(Integer errorCode) { this.errorCode = errorCode; } public String getErrorMsg() { return this.errorMsg; } public void setErrorMsg(String errorMsg) { this.errorMsg = errorMsg; } @Override public ShopOverviewResponse getInstance(UnmarshallerContext context) { return ShopOverviewResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model/v20170328/ShopSetfiltermacRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloudwf.model.v20170328; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * @version */ public class ShopSetfiltermacRequest extends RpcAcsRequest<ShopSetfiltermacResponse> { public ShopSetfiltermacRequest() { super("cloudwf", "2017-03-28", "ShopSetfiltermac", "cloudwf"); } private String mac; private Long sid; public String getMac() { return this.mac; } public void setMac(String mac) { this.mac = mac; if(mac != null){ putQueryParameter("Mac", mac); } } public Long getSid() { return this.sid; } public void setSid(Long sid) { this.sid = sid; if(sid != null){ putQueryParameter("Sid", sid.toString()); } } @Override public Class<ShopSetfiltermacResponse> getResponseClass() { return ShopSetfiltermacResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model/v20170328/ShopSetfiltermacResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloudwf.model.v20170328; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudwf.transform.v20170328.ShopSetfiltermacResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ShopSetfiltermacResponse extends AcsResponse { private Boolean success; private String data; private Integer errorCode; private String errorMsg; public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getData() { return this.data; } public void setData(String data) { this.data = data; } public Integer getErrorCode() { return this.errorCode; } public void setErrorCode(Integer errorCode) { this.errorCode = errorCode; } public String getErrorMsg() { return this.errorMsg; } public void setErrorMsg(String errorMsg) { this.errorMsg = errorMsg; } @Override public ShopSetfiltermacResponse getInstance(UnmarshallerContext context) { return ShopSetfiltermacResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model/v20170328/ShopSetredressRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloudwf.model.v20170328; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * @version */ public class ShopSetredressRequest extends RpcAcsRequest<ShopSetredressResponse> { public ShopSetredressRequest() { super("cloudwf", "2017-03-28", "ShopSetredress", "cloudwf"); } private String workday; private Integer filterclose; private Integer minstoptime; private String holiday; private String hnum; private Long sid; private Integer clerk; private Integer filterstate; private String wnum; private Integer state; private Integer crowdfixed; private Integer maxstoptime; public String getWorkday() { return this.workday; } public void setWorkday(String workday) { this.workday = workday; if(workday != null){ putQueryParameter("Workday", workday); } } public Integer getFilterclose() { return this.filterclose; } public void setFilterclose(Integer filterclose) { this.filterclose = filterclose; if(filterclose != null){ putQueryParameter("Filterclose", filterclose.toString()); } } public Integer getMinstoptime() { return this.minstoptime; } public void setMinstoptime(Integer minstoptime) { this.minstoptime = minstoptime; if(minstoptime != null){ putQueryParameter("Minstoptime", minstoptime.toString()); } } public String getHoliday() { return this.holiday; } public void setHoliday(String holiday) { this.holiday = holiday; if(holiday != null){ putQueryParameter("Holiday", holiday); } } public String getHnum() { return this.hnum; } public void setHnum(String hnum) { this.hnum = hnum; if(hnum != null){ putQueryParameter("Hnum", hnum); } } public Long getSid() { return this.sid; } public void setSid(Long sid) { this.sid = sid; if(sid != null){ putQueryParameter("Sid", sid.toString()); } } public Integer getClerk() { return this.clerk; } public void setClerk(Integer clerk) { this.clerk = clerk; if(clerk != null){ putQueryParameter("Clerk", clerk.toString()); } } public Integer getFilterstate() { return this.filterstate; } public void setFilterstate(Integer filterstate) { this.filterstate = filterstate; if(filterstate != null){ putQueryParameter("Filterstate", filterstate.toString()); } } public String getWnum() { return this.wnum; } public void setWnum(String wnum) { this.wnum = wnum; if(wnum != null){ putQueryParameter("Wnum", wnum); } } public Integer getState() { return this.state; } public void setState(Integer state) { this.state = state; if(state != null){ putQueryParameter("State", state.toString()); } } public Integer getCrowdfixed() { return this.crowdfixed; } public void setCrowdfixed(Integer crowdfixed) { this.crowdfixed = crowdfixed; if(crowdfixed != null){ putQueryParameter("Crowdfixed", crowdfixed.toString()); } } public Integer getMaxstoptime() { return this.maxstoptime; } public void setMaxstoptime(Integer maxstoptime) { this.maxstoptime = maxstoptime; if(maxstoptime != null){ putQueryParameter("Maxstoptime", maxstoptime.toString()); } } @Override public Class<ShopSetredressResponse> getResponseClass() { return ShopSetredressResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model/v20170328/ShopSetredressResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloudwf.model.v20170328; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudwf.transform.v20170328.ShopSetredressResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ShopSetredressResponse extends AcsResponse { private Boolean success; private String data; private Integer errorCode; private String errorMsg; public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getData() { return this.data; } public void setData(String data) { this.data = data; } public Integer getErrorCode() { return this.errorCode; } public void setErrorCode(Integer errorCode) { this.errorCode = errorCode; } public String getErrorMsg() { return this.errorMsg; } public void setErrorMsg(String errorMsg) { this.errorMsg = errorMsg; } @Override public ShopSetredressResponse getInstance(UnmarshallerContext context) { return ShopSetredressResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model/v20170328/ShopShowListRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloudwf.model.v20170328; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * @version */ public class ShopShowListRequest extends RpcAcsRequest<ShopShowListResponse> { public ShopShowListRequest() { super("cloudwf", "2017-03-28", "ShopShowList", "cloudwf"); } private Long gid; private String address; private String name; private String dirc; private Integer page; private Long bid; private Integer per; private Integer shopStatus; public Long getGid() { return this.gid; } public void setGid(Long gid) { this.gid = gid; if(gid != null){ putQueryParameter("Gid", gid.toString()); } } public String getAddress() { return this.address; } public void setAddress(String address) { this.address = address; if(address != null){ putQueryParameter("Address", address); } } public String getName() { return this.name; } public void setName(String name) { this.name = name; if(name != null){ putQueryParameter("Name", name); } } public String getDirc() { return this.dirc; } public void setDirc(String dirc) { this.dirc = dirc; if(dirc != null){ putQueryParameter("Dirc", dirc); } } public Integer getPage() { return this.page; } public void setPage(Integer page) { this.page = page; if(page != null){ putQueryParameter("Page", page.toString()); } } public Long getBid() { return this.bid; } public void setBid(Long bid) { this.bid = bid; if(bid != null){ putQueryParameter("Bid", bid.toString()); } } public Integer getPer() { return this.per; } public void setPer(Integer per) { this.per = per; if(per != null){ putQueryParameter("Per", per.toString()); } } public Integer getShopStatus() { return this.shopStatus; } public void setShopStatus(Integer shopStatus) { this.shopStatus = shopStatus; if(shopStatus != null){ putQueryParameter("ShopStatus", shopStatus.toString()); } } @Override public Class<ShopShowListResponse> getResponseClass() { return ShopShowListResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model/v20170328/ShopShowListResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloudwf.model.v20170328; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudwf.transform.v20170328.ShopShowListResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ShopShowListResponse extends AcsResponse { private Boolean success; private String data; private Integer errorCode; private String errorMsg; public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getData() { return this.data; } public void setData(String data) { this.data = data; } public Integer getErrorCode() { return this.errorCode; } public void setErrorCode(Integer errorCode) { this.errorCode = errorCode; } public String getErrorMsg() { return this.errorMsg; } public void setErrorMsg(String errorMsg) { this.errorMsg = errorMsg; } @Override public ShopShowListResponse getInstance(UnmarshallerContext context) { return ShopShowListResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model/v20170328/ShopUpdateRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloudwf.model.v20170328; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * @version */ public class ShopUpdateRequest extends RpcAcsRequest<ShopUpdateResponse> { public ShopUpdateRequest() { super("cloudwf", "2017-03-28", "ShopUpdate", "cloudwf"); } private String shopCoordinate; private String shopProvince; private Integer shopTopType; private String shopAddress; private Integer shopType; private String warnEmail; private Long sid; private String shopTel; private String warnpHone; private Integer warn; private Integer shopArea; private String shopRemarks; private String shopCity; private Integer shopSubtype; private String shopBrand; private String shopName; private Integer shopCloseWarn; private String shopManager; private String shopBusinessHours; public String getShopCoordinate() { return this.shopCoordinate; } public void setShopCoordinate(String shopCoordinate) { this.shopCoordinate = shopCoordinate; if(shopCoordinate != null){ putQueryParameter("ShopCoordinate", shopCoordinate); } } public String getShopProvince() { return this.shopProvince; } public void setShopProvince(String shopProvince) { this.shopProvince = shopProvince; if(shopProvince != null){ putQueryParameter("ShopProvince", shopProvince); } } public Integer getShopTopType() { return this.shopTopType; } public void setShopTopType(Integer shopTopType) { this.shopTopType = shopTopType; if(shopTopType != null){ putQueryParameter("ShopTopType", shopTopType.toString()); } } public String getShopAddress() { return this.shopAddress; } public void setShopAddress(String shopAddress) { this.shopAddress = shopAddress; if(shopAddress != null){ putQueryParameter("ShopAddress", shopAddress); } } public Integer getShopType() { return this.shopType; } public void setShopType(Integer shopType) { this.shopType = shopType; if(shopType != null){ putQueryParameter("ShopType", shopType.toString()); } } public String getWarnEmail() { return this.warnEmail; } public void setWarnEmail(String warnEmail) { this.warnEmail = warnEmail; if(warnEmail != null){ putQueryParameter("WarnEmail", warnEmail); } } public Long getSid() { return this.sid; } public void setSid(Long sid) { this.sid = sid; if(sid != null){ putQueryParameter("Sid", sid.toString()); } } public String getShopTel() { return this.shopTel; } public void setShopTel(String shopTel) { this.shopTel = shopTel; if(shopTel != null){ putQueryParameter("ShopTel", shopTel); } } public String getWarnpHone() { return this.warnpHone; } public void setWarnpHone(String warnpHone) { this.warnpHone = warnpHone; if(warnpHone != null){ putQueryParameter("WarnpHone", warnpHone); } } public Integer getWarn() { return this.warn; } public void setWarn(Integer warn) { this.warn = warn; if(warn != null){ putQueryParameter("Warn", warn.toString()); } } public Integer getShopArea() { return this.shopArea; } public void setShopArea(Integer shopArea) { this.shopArea = shopArea; if(shopArea != null){ putQueryParameter("ShopArea", shopArea.toString()); } } public String getShopRemarks() { return this.shopRemarks; } public void setShopRemarks(String shopRemarks) { this.shopRemarks = shopRemarks; if(shopRemarks != null){ putQueryParameter("ShopRemarks", shopRemarks); } } public String getShopCity() { return this.shopCity; } public void setShopCity(String shopCity) { this.shopCity = shopCity; if(shopCity != null){ putQueryParameter("ShopCity", shopCity); } } public Integer getShopSubtype() { return this.shopSubtype; } public void setShopSubtype(Integer shopSubtype) { this.shopSubtype = shopSubtype; if(shopSubtype != null){ putQueryParameter("ShopSubtype", shopSubtype.toString()); } } public String getShopBrand() { return this.shopBrand; } public void setShopBrand(String shopBrand) { this.shopBrand = shopBrand; if(shopBrand != null){ putQueryParameter("ShopBrand", shopBrand); } } public String getShopName() { return this.shopName; } public void setShopName(String shopName) { this.shopName = shopName; if(shopName != null){ putQueryParameter("ShopName", shopName); } } public Integer getShopCloseWarn() { return this.shopCloseWarn; } public void setShopCloseWarn(Integer shopCloseWarn) { this.shopCloseWarn = shopCloseWarn; if(shopCloseWarn != null){ putQueryParameter("ShopCloseWarn", shopCloseWarn.toString()); } } public String getShopManager() { return this.shopManager; } public void setShopManager(String shopManager) { this.shopManager = shopManager; if(shopManager != null){ putQueryParameter("ShopManager", shopManager); } } public String getShopBusinessHours() { return this.shopBusinessHours; } public void setShopBusinessHours(String shopBusinessHours) { this.shopBusinessHours = shopBusinessHours; if(shopBusinessHours != null){ putQueryParameter("ShopBusinessHours", shopBusinessHours); } } @Override public Class<ShopUpdateResponse> getResponseClass() { return ShopUpdateResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model/v20170328/ShopUpdateResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloudwf.model.v20170328; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudwf.transform.v20170328.ShopUpdateResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ShopUpdateResponse extends AcsResponse { private Boolean success; private String data; private Integer errorCode; private String errorMsg; public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getData() { return this.data; } public void setData(String data) { this.data = data; } public Integer getErrorCode() { return this.errorCode; } public void setErrorCode(Integer errorCode) { this.errorCode = errorCode; } public String getErrorMsg() { return this.errorMsg; } public void setErrorMsg(String errorMsg) { this.errorMsg = errorMsg; } @Override public ShopUpdateResponse getInstance(UnmarshallerContext context) { return ShopUpdateResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model/v20170328/UpLoadMapRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloudwf.model.v20170328; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * @version */ public class UpLoadMapRequest extends RpcAcsRequest<UpLoadMapResponse> { public UpLoadMapRequest() { super("cloudwf", "2017-03-28", "UpLoadMap", "cloudwf"); } private String fileName; private String uploadId; private String objectName; private Integer chunkIndex; private Integer chunkCnt; public String getFileName() { return this.fileName; } public void setFileName(String fileName) { this.fileName = fileName; if(fileName != null){ putQueryParameter("FileName", fileName); } } public String getUploadId() { return this.uploadId; } public void setUploadId(String uploadId) { this.uploadId = uploadId; if(uploadId != null){ putQueryParameter("UploadId", uploadId); } } public String getObjectName() { return this.objectName; } public void setObjectName(String objectName) { this.objectName = objectName; if(objectName != null){ putQueryParameter("ObjectName", objectName); } } public Integer getChunkIndex() { return this.chunkIndex; } public void setChunkIndex(Integer chunkIndex) { this.chunkIndex = chunkIndex; if(chunkIndex != null){ putQueryParameter("ChunkIndex", chunkIndex.toString()); } } public Integer getChunkCnt() { return this.chunkCnt; } public void setChunkCnt(Integer chunkCnt) { this.chunkCnt = chunkCnt; if(chunkCnt != null){ putQueryParameter("ChunkCnt", chunkCnt.toString()); } } @Override public Class<UpLoadMapResponse> getResponseClass() { return UpLoadMapResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model/v20170328/UpLoadMapResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloudwf.model.v20170328; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudwf.transform.v20170328.UpLoadMapResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class UpLoadMapResponse extends AcsResponse { private String requestId; private Boolean success; private String message; private String data; private Integer errorCode; private String errorMsg; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getData() { return this.data; } public void setData(String data) { this.data = data; } public Integer getErrorCode() { return this.errorCode; } public void setErrorCode(Integer errorCode) { this.errorCode = errorCode; } public String getErrorMsg() { return this.errorMsg; } public void setErrorMsg(String errorMsg) { this.errorMsg = errorMsg; } @Override public UpLoadMapResponse getInstance(UnmarshallerContext context) { return UpLoadMapResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model/v20170328/UpgradeAPGroupRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloudwf.model.v20170328; import com.aliyuncs.RpcAcsRequest; import java.util.List; /** * @author auto create * @version */ public class UpgradeAPGroupRequest extends RpcAcsRequest<UpgradeAPGroupResponse> { public UpgradeAPGroupRequest() { super("cloudwf", "2017-03-28", "UpgradeAPGroup", "cloudwf"); } private List<Long> idss; public List<Long> getIdss() { return this.idss; } public void setIdss(List<Long> idss) { this.idss = idss; if (idss != null) { for (int i = 0; i < idss.size(); i++) { putQueryParameter("Ids." + (i + 1) , idss.get(i)); } } } @Override public Class<UpgradeAPGroupResponse> getResponseClass() { return UpgradeAPGroupResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model/v20170328/UpgradeAPGroupResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloudwf.model.v20170328; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudwf.transform.v20170328.UpgradeAPGroupResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class UpgradeAPGroupResponse extends AcsResponse { private String requestId; private Boolean success; private String data; private String message; private Integer errorCode; private String errorMsg; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getData() { return this.data; } public void setData(String data) { this.data = data; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public Integer getErrorCode() { return this.errorCode; } public void setErrorCode(Integer errorCode) { this.errorCode = errorCode; } public String getErrorMsg() { return this.errorMsg; } public void setErrorMsg(String errorMsg) { this.errorMsg = errorMsg; } @Override public UpgradeAPGroupResponse getInstance(UnmarshallerContext context) { return UpgradeAPGroupResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model/v20170328/UpgradeAPRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloudwf.model.v20170328; import com.aliyuncs.RpcAcsRequest; import java.util.List; /** * @author auto create * @version */ public class UpgradeAPRequest extends RpcAcsRequest<UpgradeAPResponse> { public UpgradeAPRequest() { super("cloudwf", "2017-03-28", "UpgradeAP", "cloudwf"); } private List<Long> idss; public List<Long> getIdss() { return this.idss; } public void setIdss(List<Long> idss) { this.idss = idss; if (idss != null) { for (int i = 0; i < idss.size(); i++) { putQueryParameter("Ids." + (i + 1) , idss.get(i)); } } } @Override public Class<UpgradeAPResponse> getResponseClass() { return UpgradeAPResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model/v20170328/UpgradeAPResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloudwf.model.v20170328; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudwf.transform.v20170328.UpgradeAPResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class UpgradeAPResponse extends AcsResponse { private String requestId; private Boolean success; private String data; private String message; private Integer errorCode; private String errorMsg; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getData() { return this.data; } public void setData(String data) { this.data = data; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public Integer getErrorCode() { return this.errorCode; } public void setErrorCode(Integer errorCode) { this.errorCode = errorCode; } public String getErrorMsg() { return this.errorMsg; } public void setErrorMsg(String errorMsg) { this.errorMsg = errorMsg; } @Override public UpgradeAPResponse getInstance(UnmarshallerContext context) { return UpgradeAPResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model/v20170328/UserAnalyseRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloudwf.model.v20170328; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * @version */ public class UserAnalyseRequest extends RpcAcsRequest<UserAnalyseResponse> { public UserAnalyseRequest() { super("cloudwf", "2017-03-28", "UserAnalyse", "cloudwf"); } private Long gsid; public Long getGsid() { return this.gsid; } public void setGsid(Long gsid) { this.gsid = gsid; if(gsid != null){ putQueryParameter("Gsid", gsid.toString()); } } @Override public Class<UserAnalyseResponse> getResponseClass() { return UserAnalyseResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model/v20170328/UserAnalyseResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloudwf.model.v20170328; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudwf.transform.v20170328.UserAnalyseResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class UserAnalyseResponse extends AcsResponse { private Boolean success; private String data; private Integer errorCode; private String errorMsg; public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getData() { return this.data; } public void setData(String data) { this.data = data; } public Integer getErrorCode() { return this.errorCode; } public void setErrorCode(Integer errorCode) { this.errorCode = errorCode; } public String getErrorMsg() { return this.errorMsg; } public void setErrorMsg(String errorMsg) { this.errorMsg = errorMsg; } @Override public UserAnalyseResponse getInstance(UnmarshallerContext context) { return UserAnalyseResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model/v20170328/UserDataCreateRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloudwf.model.v20170328; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * @version */ public class UserDataCreateRequest extends RpcAcsRequest<UserDataCreateResponse> { public UserDataCreateRequest() { super("cloudwf", "2017-03-28", "UserDataCreate", "cloudwf"); } private String uploadFile; private String name; private Long bid; private String type; public String getUploadFile() { return this.uploadFile; } public void setUploadFile(String uploadFile) { this.uploadFile = uploadFile; if(uploadFile != null){ putQueryParameter("UploadFile", uploadFile); } } public String getName() { return this.name; } public void setName(String name) { this.name = name; if(name != null){ putQueryParameter("Name", name); } } public Long getBid() { return this.bid; } public void setBid(Long bid) { this.bid = bid; if(bid != null){ putQueryParameter("Bid", bid.toString()); } } public String getType() { return this.type; } public void setType(String type) { this.type = type; if(type != null){ putQueryParameter("Type", type); } } @Override public Class<UserDataCreateResponse> getResponseClass() { return UserDataCreateResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model/v20170328/UserDataCreateResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloudwf.model.v20170328; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudwf.transform.v20170328.UserDataCreateResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class UserDataCreateResponse extends AcsResponse { private Boolean success; private String data; private Integer errorCode; private String errorMsg; public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getData() { return this.data; } public void setData(String data) { this.data = data; } public Integer getErrorCode() { return this.errorCode; } public void setErrorCode(Integer errorCode) { this.errorCode = errorCode; } public String getErrorMsg() { return this.errorMsg; } public void setErrorMsg(String errorMsg) { this.errorMsg = errorMsg; } @Override public UserDataCreateResponse getInstance(UnmarshallerContext context) { return UserDataCreateResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model/v20170328/UserDataDeleteRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloudwf.model.v20170328; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * @version */ public class UserDataDeleteRequest extends RpcAcsRequest<UserDataDeleteResponse> { public UserDataDeleteRequest() { super("cloudwf", "2017-03-28", "UserDataDelete", "cloudwf"); } private Long iid; private Long bid; public Long getIid() { return this.iid; } public void setIid(Long iid) { this.iid = iid; if(iid != null){ putQueryParameter("Iid", iid.toString()); } } public Long getBid() { return this.bid; } public void setBid(Long bid) { this.bid = bid; if(bid != null){ putQueryParameter("Bid", bid.toString()); } } @Override public Class<UserDataDeleteResponse> getResponseClass() { return UserDataDeleteResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model/v20170328/UserDataDeleteResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloudwf.model.v20170328; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudwf.transform.v20170328.UserDataDeleteResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class UserDataDeleteResponse extends AcsResponse { private Boolean success; private String data; private Integer errorCode; private String errorMsg; public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getData() { return this.data; } public void setData(String data) { this.data = data; } public Integer getErrorCode() { return this.errorCode; } public void setErrorCode(Integer errorCode) { this.errorCode = errorCode; } public String getErrorMsg() { return this.errorMsg; } public void setErrorMsg(String errorMsg) { this.errorMsg = errorMsg; } @Override public UserDataDeleteResponse getInstance(UnmarshallerContext context) { return UserDataDeleteResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model/v20170328/UserDataShowListRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloudwf.model.v20170328; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * @version */ public class UserDataShowListRequest extends RpcAcsRequest<UserDataShowListResponse> { public UserDataShowListRequest() { super("cloudwf", "2017-03-28", "UserDataShowList", "cloudwf"); } private Long iid; private String name; private Integer page; private Long bid; private Integer per; public Long getIid() { return this.iid; } public void setIid(Long iid) { this.iid = iid; if(iid != null){ putQueryParameter("Iid", iid.toString()); } } public String getName() { return this.name; } public void setName(String name) { this.name = name; if(name != null){ putQueryParameter("Name", name); } } public Integer getPage() { return this.page; } public void setPage(Integer page) { this.page = page; if(page != null){ putQueryParameter("Page", page.toString()); } } public Long getBid() { return this.bid; } public void setBid(Long bid) { this.bid = bid; if(bid != null){ putQueryParameter("Bid", bid.toString()); } } public Integer getPer() { return this.per; } public void setPer(Integer per) { this.per = per; if(per != null){ putQueryParameter("Per", per.toString()); } } @Override public Class<UserDataShowListResponse> getResponseClass() { return UserDataShowListResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model/v20170328/UserDataShowListResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloudwf.model.v20170328; import com.aliyuncs.AcsResponse; import com.aliyuncs.cloudwf.transform.v20170328.UserDataShowListResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class UserDataShowListResponse extends AcsResponse { private Boolean success; private String data; private Integer errorCode; private String errorMsg; public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getData() { return this.data; } public void setData(String data) { this.data = data; } public Integer getErrorCode() { return this.errorCode; } public void setErrorCode(Integer errorCode) { this.errorCode = errorCode; } public String getErrorMsg() { return this.errorMsg; } public void setErrorMsg(String errorMsg) { this.errorMsg = errorMsg; } @Override public UserDataShowListResponse getInstance(UnmarshallerContext context) { return UserDataShowListResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model
java-sources/com/aliyun/aliyun-java-sdk-cloudwf/1.0.3/com/aliyuncs/cloudwf/model/v20170328/UserDataUpdateRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.cloudwf.model.v20170328; import com.aliyuncs.RpcAcsRequest; /** * @author auto create * @version */ public class UserDataUpdateRequest extends RpcAcsRequest<UserDataUpdateResponse> { public UserDataUpdateRequest() { super("cloudwf", "2017-03-28", "UserDataUpdate", "cloudwf"); } private Long iid; private String uploadFile; private String name; private Long bid; private String type; public Long getIid() { return this.iid; } public void setIid(Long iid) { this.iid = iid; if(iid != null){ putQueryParameter("Iid", iid.toString()); } } public String getUploadFile() { return this.uploadFile; } public void setUploadFile(String uploadFile) { this.uploadFile = uploadFile; if(uploadFile != null){ putQueryParameter("UploadFile", uploadFile); } } public String getName() { return this.name; } public void setName(String name) { this.name = name; if(name != null){ putQueryParameter("Name", name); } } public Long getBid() { return this.bid; } public void setBid(Long bid) { this.bid = bid; if(bid != null){ putQueryParameter("Bid", bid.toString()); } } public String getType() { return this.type; } public void setType(String type) { this.type = type; if(type != null){ putQueryParameter("Type", type); } } @Override public Class<UserDataUpdateResponse> getResponseClass() { return UserDataUpdateResponse.class; } }