index
int64 | repo_id
string | file_path
string | content
string |
|---|---|---|---|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/transform
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/transform/v20191030/JoinMeetingResponseUnmarshaller.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.v5.aliyuncvc.transform.v20191030;
import com.aliyuncs.v5.aliyuncvc.model.v20191030.JoinMeetingResponse;
import com.aliyuncs.v5.aliyuncvc.model.v20191030.JoinMeetingResponse.MeetingInfo;
import com.aliyuncs.v5.aliyuncvc.model.v20191030.JoinMeetingResponse.MeetingInfo.SlsInfo;
import com.aliyuncs.v5.transform.UnmarshallerContext;
public class JoinMeetingResponseUnmarshaller {
public static JoinMeetingResponse unmarshall(JoinMeetingResponse joinMeetingResponse, UnmarshallerContext _ctx) {
joinMeetingResponse.setRequestId(_ctx.stringValue("JoinMeetingResponse.RequestId"));
joinMeetingResponse.setErrorCode(_ctx.integerValue("JoinMeetingResponse.ErrorCode"));
joinMeetingResponse.setSuccess(_ctx.booleanValue("JoinMeetingResponse.Success"));
joinMeetingResponse.setMessage(_ctx.stringValue("JoinMeetingResponse.Message"));
MeetingInfo meetingInfo = new MeetingInfo();
meetingInfo.setMeetingDomain(_ctx.stringValue("JoinMeetingResponse.MeetingInfo.MeetingDomain"));
meetingInfo.setMeetingToken(_ctx.stringValue("JoinMeetingResponse.MeetingInfo.MeetingToken"));
meetingInfo.setMeetingCode(_ctx.stringValue("JoinMeetingResponse.MeetingInfo.MeetingCode"));
meetingInfo.setMemberUUID(_ctx.stringValue("JoinMeetingResponse.MeetingInfo.MemberUUID"));
meetingInfo.setClientAppId(_ctx.stringValue("JoinMeetingResponse.MeetingInfo.ClientAppId"));
meetingInfo.setMeetingUUID(_ctx.stringValue("JoinMeetingResponse.MeetingInfo.MeetingUUID"));
meetingInfo.setMeetingAppId(_ctx.stringValue("JoinMeetingResponse.MeetingInfo.MeetingAppId"));
SlsInfo slsInfo = new SlsInfo();
slsInfo.setLogServiceEndpoint(_ctx.stringValue("JoinMeetingResponse.MeetingInfo.SlsInfo.LogServiceEndpoint"));
slsInfo.setLogstore(_ctx.stringValue("JoinMeetingResponse.MeetingInfo.SlsInfo.Logstore"));
slsInfo.setProject(_ctx.stringValue("JoinMeetingResponse.MeetingInfo.SlsInfo.Project"));
meetingInfo.setSlsInfo(slsInfo);
joinMeetingResponse.setMeetingInfo(meetingInfo);
return joinMeetingResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/transform
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/transform/v20191030/ListDeviceIpResponseUnmarshaller.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.v5.aliyuncvc.transform.v20191030;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.v5.aliyuncvc.model.v20191030.ListDeviceIpResponse;
import com.aliyuncs.v5.aliyuncvc.model.v20191030.ListDeviceIpResponse.DevicesItem;
import com.aliyuncs.v5.transform.UnmarshallerContext;
public class ListDeviceIpResponseUnmarshaller {
public static ListDeviceIpResponse unmarshall(ListDeviceIpResponse listDeviceIpResponse, UnmarshallerContext _ctx) {
listDeviceIpResponse.setRequestId(_ctx.stringValue("ListDeviceIpResponse.RequestId"));
listDeviceIpResponse.setErrorCode(_ctx.integerValue("ListDeviceIpResponse.ErrorCode"));
listDeviceIpResponse.setMessage(_ctx.stringValue("ListDeviceIpResponse.Message"));
listDeviceIpResponse.setSuccess(_ctx.booleanValue("ListDeviceIpResponse.Success"));
List<DevicesItem> devicesList = new ArrayList<DevicesItem>();
for (int i = 0; i < _ctx.lengthValue("ListDeviceIpResponse.Devices.Length"); i++) {
DevicesItem devicesItem = new DevicesItem();
devicesItem.setScreenCode(_ctx.stringValue("ListDeviceIpResponse.Devices["+ i +"].ScreenCode"));
devicesItem.setIp(_ctx.stringValue("ListDeviceIpResponse.Devices["+ i +"].Ip"));
devicesItem.setMac(_ctx.stringValue("ListDeviceIpResponse.Devices["+ i +"].Mac"));
devicesItem.setSsId(_ctx.stringValue("ListDeviceIpResponse.Devices["+ i +"].SsId"));
devicesList.add(devicesItem);
}
listDeviceIpResponse.setDevices(devicesList);
return listDeviceIpResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/transform
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/transform/v20191030/ListEvaluationsResponseUnmarshaller.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.v5.aliyuncvc.transform.v20191030;
import com.aliyuncs.v5.aliyuncvc.model.v20191030.ListEvaluationsResponse;
import com.aliyuncs.v5.transform.UnmarshallerContext;
public class ListEvaluationsResponseUnmarshaller {
public static ListEvaluationsResponse unmarshall(ListEvaluationsResponse listEvaluationsResponse, UnmarshallerContext _ctx) {
listEvaluationsResponse.setRequestId(_ctx.stringValue("ListEvaluationsResponse.RequestId"));
listEvaluationsResponse.setUserEvaluation(_ctx.stringValue("ListEvaluationsResponse.UserEvaluation"));
listEvaluationsResponse.setErrorCode(_ctx.integerValue("ListEvaluationsResponse.ErrorCode"));
listEvaluationsResponse.setMessage(_ctx.stringValue("ListEvaluationsResponse.Message"));
listEvaluationsResponse.setSuccess(_ctx.booleanValue("ListEvaluationsResponse.Success"));
return listEvaluationsResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/transform
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/transform/v20191030/ListIsvStatisticsResponseUnmarshaller.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.v5.aliyuncvc.transform.v20191030;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.v5.aliyuncvc.model.v20191030.ListIsvStatisticsResponse;
import com.aliyuncs.v5.aliyuncvc.model.v20191030.ListIsvStatisticsResponse.Data;
import com.aliyuncs.v5.aliyuncvc.model.v20191030.ListIsvStatisticsResponse.Data.Statistic;
import com.aliyuncs.v5.aliyuncvc.model.v20191030.ListIsvStatisticsResponse.Data.Total;
import com.aliyuncs.v5.transform.UnmarshallerContext;
public class ListIsvStatisticsResponseUnmarshaller {
public static ListIsvStatisticsResponse unmarshall(ListIsvStatisticsResponse listIsvStatisticsResponse, UnmarshallerContext _ctx) {
listIsvStatisticsResponse.setRequestId(_ctx.stringValue("ListIsvStatisticsResponse.RequestId"));
listIsvStatisticsResponse.setErrorCode(_ctx.integerValue("ListIsvStatisticsResponse.ErrorCode"));
listIsvStatisticsResponse.setMessage(_ctx.stringValue("ListIsvStatisticsResponse.Message"));
listIsvStatisticsResponse.setSuccess(_ctx.booleanValue("ListIsvStatisticsResponse.Success"));
Data data = new Data();
Total total = new Total();
total.setMeetingNumber(_ctx.integerValue("ListIsvStatisticsResponse.Data.Total.MeetingNumber"));
total.setMeetingLength(_ctx.integerValue("ListIsvStatisticsResponse.Data.Total.MeetingLength"));
total.setMemberNumber(_ctx.integerValue("ListIsvStatisticsResponse.Data.Total.MemberNumber"));
data.setTotal(total);
List<Statistic> statisticsList = new ArrayList<Statistic>();
for (int i = 0; i < _ctx.lengthValue("ListIsvStatisticsResponse.Data.Statistics.Length"); i++) {
Statistic statistic = new Statistic();
statistic.setMeetingNumber(_ctx.stringValue("ListIsvStatisticsResponse.Data.Statistics["+ i +"].MeetingNumber"));
statistic.setMeetingLength(_ctx.stringValue("ListIsvStatisticsResponse.Data.Statistics["+ i +"].MeetingLength"));
statistic.setMemberNumber(_ctx.stringValue("ListIsvStatisticsResponse.Data.Statistics["+ i +"].MemberNumber"));
statistic.setDay(_ctx.stringValue("ListIsvStatisticsResponse.Data.Statistics["+ i +"].Day"));
statisticsList.add(statistic);
}
data.setStatistics(statisticsList);
listIsvStatisticsResponse.setData(data);
return listIsvStatisticsResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/transform
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/transform/v20191030/ListMembersResponseUnmarshaller.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.v5.aliyuncvc.transform.v20191030;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.v5.aliyuncvc.model.v20191030.ListMembersResponse;
import com.aliyuncs.v5.aliyuncvc.model.v20191030.ListMembersResponse.MeetingInfo;
import com.aliyuncs.v5.aliyuncvc.model.v20191030.ListMembersResponse.MeetingInfo.MemberRecord;
import com.aliyuncs.v5.transform.UnmarshallerContext;
public class ListMembersResponseUnmarshaller {
public static ListMembersResponse unmarshall(ListMembersResponse listMembersResponse, UnmarshallerContext _ctx) {
listMembersResponse.setRequestId(_ctx.stringValue("ListMembersResponse.RequestId"));
listMembersResponse.setErrorCode(_ctx.integerValue("ListMembersResponse.ErrorCode"));
listMembersResponse.setMessage(_ctx.stringValue("ListMembersResponse.Message"));
listMembersResponse.setSuccess(_ctx.booleanValue("ListMembersResponse.Success"));
MeetingInfo meetingInfo = new MeetingInfo();
meetingInfo.setMeetingName(_ctx.stringValue("ListMembersResponse.MeetingInfo.MeetingName"));
meetingInfo.setMeetingCode(_ctx.stringValue("ListMembersResponse.MeetingInfo.MeetingCode"));
meetingInfo.setMemo(_ctx.stringValue("ListMembersResponse.MeetingInfo.Memo"));
meetingInfo.setUserName(_ctx.stringValue("ListMembersResponse.MeetingInfo.UserName"));
meetingInfo.setCreateTime(_ctx.longValue("ListMembersResponse.MeetingInfo.CreateTime"));
meetingInfo.setUserId(_ctx.stringValue("ListMembersResponse.MeetingInfo.UserId"));
meetingInfo.setMeetingUUID(_ctx.stringValue("ListMembersResponse.MeetingInfo.MeetingUUID"));
List<MemberRecord> memberInfosList = new ArrayList<MemberRecord>();
for (int i = 0; i < _ctx.lengthValue("ListMembersResponse.MeetingInfo.MemberInfos.Length"); i++) {
MemberRecord memberRecord = new MemberRecord();
memberRecord.setMemberUUID(_ctx.stringValue("ListMembersResponse.MeetingInfo.MemberInfos["+ i +"].MemberUUID"));
memberRecord.setUserId(_ctx.stringValue("ListMembersResponse.MeetingInfo.MemberInfos["+ i +"].UserId"));
memberRecord.setStatus(_ctx.stringValue("ListMembersResponse.MeetingInfo.MemberInfos["+ i +"].Status"));
memberRecord.setBeginTime(_ctx.longValue("ListMembersResponse.MeetingInfo.MemberInfos["+ i +"].BeginTime"));
memberRecord.setEndTime(_ctx.longValue("ListMembersResponse.MeetingInfo.MemberInfos["+ i +"].EndTime"));
memberRecord.setUserName(_ctx.stringValue("ListMembersResponse.MeetingInfo.MemberInfos["+ i +"].UserName"));
memberInfosList.add(memberRecord);
}
meetingInfo.setMemberInfos(memberInfosList);
listMembersResponse.setMeetingInfo(meetingInfo);
return listMembersResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/transform
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/transform/v20191030/ListUsersResponseUnmarshaller.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.v5.aliyuncvc.transform.v20191030;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.v5.aliyuncvc.model.v20191030.ListUsersResponse;
import com.aliyuncs.v5.aliyuncvc.model.v20191030.ListUsersResponse.Data;
import com.aliyuncs.v5.aliyuncvc.model.v20191030.ListUsersResponse.Data.UserInfo;
import com.aliyuncs.v5.transform.UnmarshallerContext;
public class ListUsersResponseUnmarshaller {
public static ListUsersResponse unmarshall(ListUsersResponse listUsersResponse, UnmarshallerContext _ctx) {
listUsersResponse.setRequestId(_ctx.stringValue("ListUsersResponse.RequestId"));
listUsersResponse.setErrorCode(_ctx.integerValue("ListUsersResponse.ErrorCode"));
listUsersResponse.setMessage(_ctx.stringValue("ListUsersResponse.Message"));
listUsersResponse.setSuccess(_ctx.booleanValue("ListUsersResponse.Success"));
Data data = new Data();
data.setTotalCount(_ctx.integerValue("ListUsersResponse.Data.TotalCount"));
data.setPageSize(_ctx.integerValue("ListUsersResponse.Data.PageSize"));
data.setPageNumber(_ctx.integerValue("ListUsersResponse.Data.PageNumber"));
List<UserInfo> userInfosList = new ArrayList<UserInfo>();
for (int i = 0; i < _ctx.lengthValue("ListUsersResponse.Data.UserInfos.Length"); i++) {
UserInfo userInfo = new UserInfo();
userInfo.setCreateTime(_ctx.longValue("ListUsersResponse.Data.UserInfos["+ i +"].CreateTime"));
userInfo.setGroupName(_ctx.stringValue("ListUsersResponse.Data.UserInfos["+ i +"].GroupName"));
userInfo.setUserName(_ctx.stringValue("ListUsersResponse.Data.UserInfos["+ i +"].UserName"));
userInfo.setGroupId(_ctx.stringValue("ListUsersResponse.Data.UserInfos["+ i +"].GroupId"));
userInfo.setDepartName(_ctx.stringValue("ListUsersResponse.Data.UserInfos["+ i +"].DepartName"));
userInfo.setDepartId(_ctx.stringValue("ListUsersResponse.Data.UserInfos["+ i +"].DepartId"));
userInfo.setUserEmail(_ctx.stringValue("ListUsersResponse.Data.UserInfos["+ i +"].UserEmail"));
userInfo.setUserTel(_ctx.stringValue("ListUsersResponse.Data.UserInfos["+ i +"].UserTel"));
userInfo.setUserMobile(_ctx.stringValue("ListUsersResponse.Data.UserInfos["+ i +"].UserMobile"));
userInfo.setUserAvatarUrl(_ctx.stringValue("ListUsersResponse.Data.UserInfos["+ i +"].UserAvatarUrl"));
userInfo.setJobName(_ctx.stringValue("ListUsersResponse.Data.UserInfos["+ i +"].JobName"));
userInfo.setUserId(_ctx.stringValue("ListUsersResponse.Data.UserInfos["+ i +"].UserId"));
userInfosList.add(userInfo);
}
data.setUserInfos(userInfosList);
listUsersResponse.setData(data);
return listUsersResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/transform
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/transform/v20191030/ModifyMeetingPasswordInternationalResponseUnmarshaller.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.v5.aliyuncvc.transform.v20191030;
import com.aliyuncs.v5.aliyuncvc.model.v20191030.ModifyMeetingPasswordInternationalResponse;
import com.aliyuncs.v5.transform.UnmarshallerContext;
public class ModifyMeetingPasswordInternationalResponseUnmarshaller {
public static ModifyMeetingPasswordInternationalResponse unmarshall(ModifyMeetingPasswordInternationalResponse modifyMeetingPasswordInternationalResponse, UnmarshallerContext _ctx) {
modifyMeetingPasswordInternationalResponse.setRequestId(_ctx.stringValue("ModifyMeetingPasswordInternationalResponse.RequestId"));
modifyMeetingPasswordInternationalResponse.setErrorCode(_ctx.integerValue("ModifyMeetingPasswordInternationalResponse.ErrorCode"));
modifyMeetingPasswordInternationalResponse.setMessage(_ctx.stringValue("ModifyMeetingPasswordInternationalResponse.Message"));
modifyMeetingPasswordInternationalResponse.setSuccess(_ctx.booleanValue("ModifyMeetingPasswordInternationalResponse.Success"));
return modifyMeetingPasswordInternationalResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/transform
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/transform/v20191030/ModifyMeetingPasswordResponseUnmarshaller.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.v5.aliyuncvc.transform.v20191030;
import com.aliyuncs.v5.aliyuncvc.model.v20191030.ModifyMeetingPasswordResponse;
import com.aliyuncs.v5.transform.UnmarshallerContext;
public class ModifyMeetingPasswordResponseUnmarshaller {
public static ModifyMeetingPasswordResponse unmarshall(ModifyMeetingPasswordResponse modifyMeetingPasswordResponse, UnmarshallerContext _ctx) {
modifyMeetingPasswordResponse.setRequestId(_ctx.stringValue("ModifyMeetingPasswordResponse.RequestId"));
modifyMeetingPasswordResponse.setErrorCode(_ctx.integerValue("ModifyMeetingPasswordResponse.ErrorCode"));
modifyMeetingPasswordResponse.setMessage(_ctx.stringValue("ModifyMeetingPasswordResponse.Message"));
modifyMeetingPasswordResponse.setSuccess(_ctx.booleanValue("ModifyMeetingPasswordResponse.Success"));
return modifyMeetingPasswordResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/transform
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/transform/v20191030/RegisterDeviceResponseUnmarshaller.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.v5.aliyuncvc.transform.v20191030;
import com.aliyuncs.v5.aliyuncvc.model.v20191030.RegisterDeviceResponse;
import com.aliyuncs.v5.aliyuncvc.model.v20191030.RegisterDeviceResponse.DeviceInfo;
import com.aliyuncs.v5.aliyuncvc.model.v20191030.RegisterDeviceResponse.DeviceInfo.AuthWsChannelConfig;
import com.aliyuncs.v5.aliyuncvc.model.v20191030.RegisterDeviceResponse.DeviceInfo.MqttParam;
import com.aliyuncs.v5.aliyuncvc.model.v20191030.RegisterDeviceResponse.DeviceInfo.SlsConfig;
import com.aliyuncs.v5.transform.UnmarshallerContext;
public class RegisterDeviceResponseUnmarshaller {
public static RegisterDeviceResponse unmarshall(RegisterDeviceResponse registerDeviceResponse, UnmarshallerContext _ctx) {
registerDeviceResponse.setRequestId(_ctx.stringValue("RegisterDeviceResponse.RequestId"));
registerDeviceResponse.setErrorCode(_ctx.integerValue("RegisterDeviceResponse.ErrorCode"));
registerDeviceResponse.setSuccess(_ctx.booleanValue("RegisterDeviceResponse.Success"));
registerDeviceResponse.setMessage(_ctx.stringValue("RegisterDeviceResponse.Message"));
DeviceInfo deviceInfo = new DeviceInfo();
deviceInfo.setChannelType(_ctx.stringValue("RegisterDeviceResponse.DeviceInfo.ChannelType"));
deviceInfo.setRegisterTime(_ctx.longValue("RegisterDeviceResponse.DeviceInfo.RegisterTime"));
deviceInfo.setDeviceName(_ctx.stringValue("RegisterDeviceResponse.DeviceInfo.DeviceName"));
deviceInfo.setDeviceSessionId(_ctx.stringValue("RegisterDeviceResponse.DeviceInfo.DeviceSessionId"));
deviceInfo.setMessageKey(_ctx.stringValue("RegisterDeviceResponse.DeviceInfo.MessageKey"));
deviceInfo.setScreenCode(_ctx.stringValue("RegisterDeviceResponse.DeviceInfo.ScreenCode"));
MqttParam mqttParam = new MqttParam();
mqttParam.setClientId(_ctx.stringValue("RegisterDeviceResponse.DeviceInfo.MqttParam.ClientId"));
mqttParam.setGroupId(_ctx.stringValue("RegisterDeviceResponse.DeviceInfo.MqttParam.GroupId"));
mqttParam.setCleanSession(_ctx.stringValue("RegisterDeviceResponse.DeviceInfo.MqttParam.CleanSession"));
mqttParam.setPassword(_ctx.stringValue("RegisterDeviceResponse.DeviceInfo.MqttParam.Password"));
mqttParam.setPort(_ctx.stringValue("RegisterDeviceResponse.DeviceInfo.MqttParam.Port"));
mqttParam.setHost(_ctx.stringValue("RegisterDeviceResponse.DeviceInfo.MqttParam.Host"));
mqttParam.setTopic(_ctx.stringValue("RegisterDeviceResponse.DeviceInfo.MqttParam.Topic"));
mqttParam.setSDKClientPort(_ctx.stringValue("RegisterDeviceResponse.DeviceInfo.MqttParam.SDKClientPort"));
mqttParam.setTLSPort(_ctx.stringValue("RegisterDeviceResponse.DeviceInfo.MqttParam.TLSPort"));
mqttParam.setUseTLS(_ctx.stringValue("RegisterDeviceResponse.DeviceInfo.MqttParam.UseTLS"));
mqttParam.setUserName(_ctx.stringValue("RegisterDeviceResponse.DeviceInfo.MqttParam.UserName"));
mqttParam.setReconnectTimeout(_ctx.stringValue("RegisterDeviceResponse.DeviceInfo.MqttParam.ReconnectTimeout"));
deviceInfo.setMqttParam(mqttParam);
AuthWsChannelConfig authWsChannelConfig = new AuthWsChannelConfig();
authWsChannelConfig.setAuthWsUrl(_ctx.stringValue("RegisterDeviceResponse.DeviceInfo.AuthWsChannelConfig.AuthWsUrl"));
authWsChannelConfig.setWsOuterReconnTime(_ctx.integerValue("RegisterDeviceResponse.DeviceInfo.AuthWsChannelConfig.WsOuterReconnTime"));
authWsChannelConfig.setToken(_ctx.stringValue("RegisterDeviceResponse.DeviceInfo.AuthWsChannelConfig.Token"));
deviceInfo.setAuthWsChannelConfig(authWsChannelConfig);
SlsConfig slsConfig = new SlsConfig();
slsConfig.setProject(_ctx.stringValue("RegisterDeviceResponse.DeviceInfo.SlsConfig.Project"));
slsConfig.setLogStore(_ctx.stringValue("RegisterDeviceResponse.DeviceInfo.SlsConfig.LogStore"));
slsConfig.setLogServiceEndpoint(_ctx.stringValue("RegisterDeviceResponse.DeviceInfo.SlsConfig.LogServiceEndpoint"));
deviceInfo.setSlsConfig(slsConfig);
registerDeviceResponse.setDeviceInfo(deviceInfo);
return registerDeviceResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/transform
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/transform/v20191030/RegisterUemDeviceResponseUnmarshaller.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.v5.aliyuncvc.transform.v20191030;
import com.aliyuncs.v5.aliyuncvc.model.v20191030.RegisterUemDeviceResponse;
import com.aliyuncs.v5.aliyuncvc.model.v20191030.RegisterUemDeviceResponse.DeviceInfo;
import com.aliyuncs.v5.aliyuncvc.model.v20191030.RegisterUemDeviceResponse.DeviceInfo.AuthWsChannelConfig;
import com.aliyuncs.v5.aliyuncvc.model.v20191030.RegisterUemDeviceResponse.DeviceInfo.MqttParam;
import com.aliyuncs.v5.aliyuncvc.model.v20191030.RegisterUemDeviceResponse.DeviceInfo.SlsConfig;
import com.aliyuncs.v5.transform.UnmarshallerContext;
public class RegisterUemDeviceResponseUnmarshaller {
public static RegisterUemDeviceResponse unmarshall(RegisterUemDeviceResponse registerUemDeviceResponse, UnmarshallerContext _ctx) {
registerUemDeviceResponse.setRequestId(_ctx.stringValue("RegisterUemDeviceResponse.RequestId"));
registerUemDeviceResponse.setErrorCode(_ctx.integerValue("RegisterUemDeviceResponse.ErrorCode"));
registerUemDeviceResponse.setSuccess(_ctx.booleanValue("RegisterUemDeviceResponse.Success"));
registerUemDeviceResponse.setMessage(_ctx.stringValue("RegisterUemDeviceResponse.Message"));
DeviceInfo deviceInfo = new DeviceInfo();
deviceInfo.setChannelType(_ctx.stringValue("RegisterUemDeviceResponse.DeviceInfo.ChannelType"));
deviceInfo.setRegisterTime(_ctx.longValue("RegisterUemDeviceResponse.DeviceInfo.RegisterTime"));
deviceInfo.setDeviceName(_ctx.stringValue("RegisterUemDeviceResponse.DeviceInfo.DeviceName"));
deviceInfo.setDeviceSessionId(_ctx.stringValue("RegisterUemDeviceResponse.DeviceInfo.DeviceSessionId"));
deviceInfo.setMessageKey(_ctx.stringValue("RegisterUemDeviceResponse.DeviceInfo.MessageKey"));
deviceInfo.setScreenCode(_ctx.stringValue("RegisterUemDeviceResponse.DeviceInfo.ScreenCode"));
deviceInfo.setToken(_ctx.stringValue("RegisterUemDeviceResponse.DeviceInfo.Token"));
MqttParam mqttParam = new MqttParam();
mqttParam.setClientId(_ctx.stringValue("RegisterUemDeviceResponse.DeviceInfo.MqttParam.ClientId"));
mqttParam.setGroupId(_ctx.stringValue("RegisterUemDeviceResponse.DeviceInfo.MqttParam.GroupId"));
mqttParam.setCleanSession(_ctx.stringValue("RegisterUemDeviceResponse.DeviceInfo.MqttParam.CleanSession"));
mqttParam.setPassword(_ctx.stringValue("RegisterUemDeviceResponse.DeviceInfo.MqttParam.Password"));
mqttParam.setPort(_ctx.stringValue("RegisterUemDeviceResponse.DeviceInfo.MqttParam.Port"));
mqttParam.setHost(_ctx.stringValue("RegisterUemDeviceResponse.DeviceInfo.MqttParam.Host"));
mqttParam.setTopic(_ctx.stringValue("RegisterUemDeviceResponse.DeviceInfo.MqttParam.Topic"));
mqttParam.setSDKClientPort(_ctx.stringValue("RegisterUemDeviceResponse.DeviceInfo.MqttParam.SDKClientPort"));
mqttParam.setTLSPort(_ctx.stringValue("RegisterUemDeviceResponse.DeviceInfo.MqttParam.TLSPort"));
mqttParam.setUseTLS(_ctx.stringValue("RegisterUemDeviceResponse.DeviceInfo.MqttParam.UseTLS"));
mqttParam.setUserName(_ctx.stringValue("RegisterUemDeviceResponse.DeviceInfo.MqttParam.UserName"));
mqttParam.setReconnectTimeout(_ctx.stringValue("RegisterUemDeviceResponse.DeviceInfo.MqttParam.ReconnectTimeout"));
deviceInfo.setMqttParam(mqttParam);
AuthWsChannelConfig authWsChannelConfig = new AuthWsChannelConfig();
authWsChannelConfig.setAuthWsUrl(_ctx.stringValue("RegisterUemDeviceResponse.DeviceInfo.AuthWsChannelConfig.AuthWsUrl"));
authWsChannelConfig.setWsOuterReconnTime(_ctx.integerValue("RegisterUemDeviceResponse.DeviceInfo.AuthWsChannelConfig.WsOuterReconnTime"));
authWsChannelConfig.setToken(_ctx.stringValue("RegisterUemDeviceResponse.DeviceInfo.AuthWsChannelConfig.Token"));
deviceInfo.setAuthWsChannelConfig(authWsChannelConfig);
SlsConfig slsConfig = new SlsConfig();
slsConfig.setProject(_ctx.stringValue("RegisterUemDeviceResponse.DeviceInfo.SlsConfig.Project"));
slsConfig.setLogStore(_ctx.stringValue("RegisterUemDeviceResponse.DeviceInfo.SlsConfig.LogStore"));
slsConfig.setLogServiceEndpoint(_ctx.stringValue("RegisterUemDeviceResponse.DeviceInfo.SlsConfig.LogServiceEndpoint"));
deviceInfo.setSlsConfig(slsConfig);
registerUemDeviceResponse.setDeviceInfo(deviceInfo);
return registerUemDeviceResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/transform
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/transform/v20191030/StartLiveResponseUnmarshaller.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.v5.aliyuncvc.transform.v20191030;
import com.aliyuncs.v5.aliyuncvc.model.v20191030.StartLiveResponse;
import com.aliyuncs.v5.transform.UnmarshallerContext;
public class StartLiveResponseUnmarshaller {
public static StartLiveResponse unmarshall(StartLiveResponse startLiveResponse, UnmarshallerContext _ctx) {
startLiveResponse.setRequestId(_ctx.stringValue("StartLiveResponse.RequestId"));
startLiveResponse.setErrorCode(_ctx.integerValue("StartLiveResponse.ErrorCode"));
startLiveResponse.setMessage(_ctx.stringValue("StartLiveResponse.Message"));
startLiveResponse.setSuccess(_ctx.booleanValue("StartLiveResponse.Success"));
return startLiveResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/transform
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/transform/v20191030/UpdateDeviceHeartBeatResponseUnmarshaller.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.v5.aliyuncvc.transform.v20191030;
import com.aliyuncs.v5.aliyuncvc.model.v20191030.UpdateDeviceHeartBeatResponse;
import com.aliyuncs.v5.aliyuncvc.model.v20191030.UpdateDeviceHeartBeatResponse.DeviceInfo;
import com.aliyuncs.v5.transform.UnmarshallerContext;
public class UpdateDeviceHeartBeatResponseUnmarshaller {
public static UpdateDeviceHeartBeatResponse unmarshall(UpdateDeviceHeartBeatResponse updateDeviceHeartBeatResponse, UnmarshallerContext _ctx) {
updateDeviceHeartBeatResponse.setRequestId(_ctx.stringValue("UpdateDeviceHeartBeatResponse.RequestId"));
updateDeviceHeartBeatResponse.setErrorCode(_ctx.integerValue("UpdateDeviceHeartBeatResponse.ErrorCode"));
updateDeviceHeartBeatResponse.setMessage(_ctx.stringValue("UpdateDeviceHeartBeatResponse.Message"));
updateDeviceHeartBeatResponse.setSuccess(_ctx.booleanValue("UpdateDeviceHeartBeatResponse.Success"));
DeviceInfo deviceInfo = new DeviceInfo();
deviceInfo.setChannelType(_ctx.stringValue("UpdateDeviceHeartBeatResponse.DeviceInfo.ChannelType"));
updateDeviceHeartBeatResponse.setDeviceInfo(deviceInfo);
return updateDeviceHeartBeatResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/transform
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuncvc-v5/1.0.9/com/aliyuncs/v5/aliyuncvc/transform/v20191030/UpdateLivePasswordResponseUnmarshaller.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.v5.aliyuncvc.transform.v20191030;
import com.aliyuncs.v5.aliyuncvc.model.v20191030.UpdateLivePasswordResponse;
import com.aliyuncs.v5.transform.UnmarshallerContext;
public class UpdateLivePasswordResponseUnmarshaller {
public static UpdateLivePasswordResponse unmarshall(UpdateLivePasswordResponse updateLivePasswordResponse, UnmarshallerContext _ctx) {
updateLivePasswordResponse.setRequestId(_ctx.stringValue("UpdateLivePasswordResponse.RequestId"));
updateLivePasswordResponse.setErrorCode(_ctx.integerValue("UpdateLivePasswordResponse.ErrorCode"));
updateLivePasswordResponse.setMessage(_ctx.stringValue("UpdateLivePasswordResponse.Message"));
updateLivePasswordResponse.setSuccess(_ctx.booleanValue("UpdateLivePasswordResponse.Success"));
return updateLivePasswordResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyunid-ag/1.0.0/com/aliyuncs/aliyunid_ag/model
|
java-sources/com/aliyun/aliyun-java-sdk-aliyunid-ag/1.0.0/com/aliyuncs/aliyunid_ag/model/v20180912/CreateAgAccountRequest.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.aliyunid_ag.model.v20180912;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.ProtocolType;
/**
* @author auto create
* @version
*/
public class CreateAgAccountRequest extends RpcAcsRequest<CreateAgAccountResponse> {
public CreateAgAccountRequest() {
super("aliyunid-ag", "2018-09-12", "CreateAgAccount");
setProtocol(ProtocolType.HTTPS);
}
private String loginEmail;
private String type;
public String getLoginEmail() {
return this.loginEmail;
}
public void setLoginEmail(String loginEmail) {
this.loginEmail = loginEmail;
if(loginEmail != null){
putQueryParameter("LoginEmail", loginEmail);
}
}
public String getType() {
return this.type;
}
public void setType(String type) {
this.type = type;
if(type != null){
putQueryParameter("Type", type);
}
}
@Override
public Class<CreateAgAccountResponse> getResponseClass() {
return CreateAgAccountResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyunid-ag/1.0.0/com/aliyuncs/aliyunid_ag/model
|
java-sources/com/aliyun/aliyun-java-sdk-aliyunid-ag/1.0.0/com/aliyuncs/aliyunid_ag/model/v20180912/CreateAgAccountResponse.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.aliyunid_ag.model.v20180912;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.aliyunid_ag.transform.v20180912.CreateAgAccountResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class CreateAgAccountResponse extends AcsResponse {
private String requestId;
private String code;
private String message;
private Boolean success;
private AgRelationDto agRelationDto;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public AgRelationDto getAgRelationDto() {
return this.agRelationDto;
}
public void setAgRelationDto(AgRelationDto agRelationDto) {
this.agRelationDto = agRelationDto;
}
public static class AgRelationDto {
private String pk;
private String type;
private String mpk;
public String getPk() {
return this.pk;
}
public void setPk(String pk) {
this.pk = pk;
}
public String getType() {
return this.type;
}
public void setType(String type) {
this.type = type;
}
public String getMpk() {
return this.mpk;
}
public void setMpk(String mpk) {
this.mpk = mpk;
}
}
@Override
public CreateAgAccountResponse getInstance(UnmarshallerContext context) {
return CreateAgAccountResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyunid-ag/1.0.0/com/aliyuncs/aliyunid_ag/model
|
java-sources/com/aliyun/aliyun-java-sdk-aliyunid-ag/1.0.0/com/aliyuncs/aliyunid_ag/model/v20180912/GetAgRelationRequest.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.aliyunid_ag.model.v20180912;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.ProtocolType;
/**
* @author auto create
* @version
*/
public class GetAgRelationRequest extends RpcAcsRequest<GetAgRelationResponse> {
public GetAgRelationRequest() {
super("aliyunid-ag", "2018-09-12", "GetAgRelation");
setProtocol(ProtocolType.HTTPS);
}
private String pk;
public String getPk() {
return this.pk;
}
public void setPk(String pk) {
this.pk = pk;
if(pk != null){
putQueryParameter("Pk", pk);
}
}
@Override
public Class<GetAgRelationResponse> getResponseClass() {
return GetAgRelationResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyunid-ag/1.0.0/com/aliyuncs/aliyunid_ag/model
|
java-sources/com/aliyun/aliyun-java-sdk-aliyunid-ag/1.0.0/com/aliyuncs/aliyunid_ag/model/v20180912/GetAgRelationResponse.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.aliyunid_ag.model.v20180912;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.aliyunid_ag.transform.v20180912.GetAgRelationResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetAgRelationResponse extends AcsResponse {
private String requestId;
private String code;
private String message;
private Boolean success;
private AgRelationDto agRelationDto;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public AgRelationDto getAgRelationDto() {
return this.agRelationDto;
}
public void setAgRelationDto(AgRelationDto agRelationDto) {
this.agRelationDto = agRelationDto;
}
public static class AgRelationDto {
private String pk;
private String type;
private String mpk;
public String getPk() {
return this.pk;
}
public void setPk(String pk) {
this.pk = pk;
}
public String getType() {
return this.type;
}
public void setType(String type) {
this.type = type;
}
public String getMpk() {
return this.mpk;
}
public void setMpk(String mpk) {
this.mpk = mpk;
}
}
@Override
public GetAgRelationResponse getInstance(UnmarshallerContext context) {
return GetAgRelationResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyunid-ag/1.0.0/com/aliyuncs/aliyunid_ag/model
|
java-sources/com/aliyun/aliyun-java-sdk-aliyunid-ag/1.0.0/com/aliyuncs/aliyunid_ag/model/v20180912/GetRamBindRequest.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.aliyunid_ag.model.v20180912;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.ProtocolType;
/**
* @author auto create
* @version
*/
public class GetRamBindRequest extends RpcAcsRequest<GetRamBindResponse> {
public GetRamBindRequest() {
super("aliyunid-ag", "2018-09-12", "GetRamBind");
setProtocol(ProtocolType.HTTPS);
}
private String pk;
public String getPk() {
return this.pk;
}
public void setPk(String pk) {
this.pk = pk;
if(pk != null){
putQueryParameter("Pk", pk);
}
}
@Override
public Class<GetRamBindResponse> getResponseClass() {
return GetRamBindResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyunid-ag/1.0.0/com/aliyuncs/aliyunid_ag/model
|
java-sources/com/aliyun/aliyun-java-sdk-aliyunid-ag/1.0.0/com/aliyuncs/aliyunid_ag/model/v20180912/GetRamBindResponse.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.aliyunid_ag.model.v20180912;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.aliyunid_ag.transform.v20180912.GetRamBindResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetRamBindResponse extends AcsResponse {
private String requestId;
private String code;
private String message;
private Boolean success;
private RamBindDto ramBindDto;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public RamBindDto getRamBindDto() {
return this.ramBindDto;
}
public void setRamBindDto(RamBindDto ramBindDto) {
this.ramBindDto = ramBindDto;
}
public static class RamBindDto {
private String roleName;
public String getRoleName() {
return this.roleName;
}
public void setRoleName(String roleName) {
this.roleName = roleName;
}
}
@Override
public GetRamBindResponse getInstance(UnmarshallerContext context) {
return GetRamBindResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyunid-ag/1.0.0/com/aliyuncs/aliyunid_ag/model
|
java-sources/com/aliyun/aliyun-java-sdk-aliyunid-ag/1.0.0/com/aliyuncs/aliyunid_ag/model/v20180912/PaginateAgRelationsRequest.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.aliyunid_ag.model.v20180912;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.ProtocolType;
/**
* @author auto create
* @version
*/
public class PaginateAgRelationsRequest extends RpcAcsRequest<PaginateAgRelationsResponse> {
public PaginateAgRelationsRequest() {
super("aliyunid-ag", "2018-09-12", "PaginateAgRelations");
setProtocol(ProtocolType.HTTPS);
}
private Long pageNo;
private Boolean queryCount;
private Integer pageSize;
public Long getPageNo() {
return this.pageNo;
}
public void setPageNo(Long pageNo) {
this.pageNo = pageNo;
if(pageNo != null){
putQueryParameter("PageNo", pageNo.toString());
}
}
public Boolean getQueryCount() {
return this.queryCount;
}
public void setQueryCount(Boolean queryCount) {
this.queryCount = queryCount;
if(queryCount != null){
putQueryParameter("QueryCount", queryCount.toString());
}
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putQueryParameter("PageSize", pageSize.toString());
}
}
@Override
public Class<PaginateAgRelationsResponse> getResponseClass() {
return PaginateAgRelationsResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyunid-ag/1.0.0/com/aliyuncs/aliyunid_ag/model
|
java-sources/com/aliyun/aliyun-java-sdk-aliyunid-ag/1.0.0/com/aliyuncs/aliyunid_ag/model/v20180912/PaginateAgRelationsResponse.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.aliyunid_ag.model.v20180912;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.aliyunid_ag.transform.v20180912.PaginateAgRelationsResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class PaginateAgRelationsResponse extends AcsResponse {
private String requestId;
private String code;
private String message;
private Boolean success;
private Long pageNo;
private Integer pageSize;
private Long totalCount;
private List<AgRelationDto> agRelationDtos;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public Long getPageNo() {
return this.pageNo;
}
public void setPageNo(Long pageNo) {
this.pageNo = pageNo;
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
public Long getTotalCount() {
return this.totalCount;
}
public void setTotalCount(Long totalCount) {
this.totalCount = totalCount;
}
public List<AgRelationDto> getAgRelationDtos() {
return this.agRelationDtos;
}
public void setAgRelationDtos(List<AgRelationDto> agRelationDtos) {
this.agRelationDtos = agRelationDtos;
}
public static class AgRelationDto {
private String pk;
private String mpk;
private String type;
public String getPk() {
return this.pk;
}
public void setPk(String pk) {
this.pk = pk;
}
public String getMpk() {
return this.mpk;
}
public void setMpk(String mpk) {
this.mpk = mpk;
}
public String getType() {
return this.type;
}
public void setType(String type) {
this.type = type;
}
}
@Override
public PaginateAgRelationsResponse getInstance(UnmarshallerContext context) {
return PaginateAgRelationsResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyunid-ag/1.0.0/com/aliyuncs/aliyunid_ag/transform
|
java-sources/com/aliyun/aliyun-java-sdk-aliyunid-ag/1.0.0/com/aliyuncs/aliyunid_ag/transform/v20180912/CreateAgAccountResponseUnmarshaller.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.aliyunid_ag.transform.v20180912;
import com.aliyuncs.aliyunid_ag.model.v20180912.CreateAgAccountResponse;
import com.aliyuncs.aliyunid_ag.model.v20180912.CreateAgAccountResponse.AgRelationDto;
import com.aliyuncs.transform.UnmarshallerContext;
public class CreateAgAccountResponseUnmarshaller {
public static CreateAgAccountResponse unmarshall(CreateAgAccountResponse createAgAccountResponse, UnmarshallerContext context) {
createAgAccountResponse.setRequestId(context.stringValue("CreateAgAccountResponse.RequestId"));
createAgAccountResponse.setCode(context.stringValue("CreateAgAccountResponse.Code"));
createAgAccountResponse.setMessage(context.stringValue("CreateAgAccountResponse.Message"));
createAgAccountResponse.setSuccess(context.booleanValue("CreateAgAccountResponse.Success"));
AgRelationDto agRelationDto = new AgRelationDto();
agRelationDto.setPk(context.stringValue("CreateAgAccountResponse.AgRelationDto.Pk"));
agRelationDto.setType(context.stringValue("CreateAgAccountResponse.AgRelationDto.Type"));
agRelationDto.setMpk(context.stringValue("CreateAgAccountResponse.AgRelationDto.Mpk"));
createAgAccountResponse.setAgRelationDto(agRelationDto);
return createAgAccountResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyunid-ag/1.0.0/com/aliyuncs/aliyunid_ag/transform
|
java-sources/com/aliyun/aliyun-java-sdk-aliyunid-ag/1.0.0/com/aliyuncs/aliyunid_ag/transform/v20180912/GetAgRelationResponseUnmarshaller.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.aliyunid_ag.transform.v20180912;
import com.aliyuncs.aliyunid_ag.model.v20180912.GetAgRelationResponse;
import com.aliyuncs.aliyunid_ag.model.v20180912.GetAgRelationResponse.AgRelationDto;
import com.aliyuncs.transform.UnmarshallerContext;
public class GetAgRelationResponseUnmarshaller {
public static GetAgRelationResponse unmarshall(GetAgRelationResponse getAgRelationResponse, UnmarshallerContext context) {
getAgRelationResponse.setRequestId(context.stringValue("GetAgRelationResponse.RequestId"));
getAgRelationResponse.setCode(context.stringValue("GetAgRelationResponse.Code"));
getAgRelationResponse.setMessage(context.stringValue("GetAgRelationResponse.Message"));
getAgRelationResponse.setSuccess(context.booleanValue("GetAgRelationResponse.Success"));
AgRelationDto agRelationDto = new AgRelationDto();
agRelationDto.setPk(context.stringValue("GetAgRelationResponse.AgRelationDto.Pk"));
agRelationDto.setType(context.stringValue("GetAgRelationResponse.AgRelationDto.Type"));
agRelationDto.setMpk(context.stringValue("GetAgRelationResponse.AgRelationDto.Mpk"));
getAgRelationResponse.setAgRelationDto(agRelationDto);
return getAgRelationResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyunid-ag/1.0.0/com/aliyuncs/aliyunid_ag/transform
|
java-sources/com/aliyun/aliyun-java-sdk-aliyunid-ag/1.0.0/com/aliyuncs/aliyunid_ag/transform/v20180912/GetRamBindResponseUnmarshaller.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.aliyunid_ag.transform.v20180912;
import com.aliyuncs.aliyunid_ag.model.v20180912.GetRamBindResponse;
import com.aliyuncs.aliyunid_ag.model.v20180912.GetRamBindResponse.RamBindDto;
import com.aliyuncs.transform.UnmarshallerContext;
public class GetRamBindResponseUnmarshaller {
public static GetRamBindResponse unmarshall(GetRamBindResponse getRamBindResponse, UnmarshallerContext context) {
getRamBindResponse.setRequestId(context.stringValue("GetRamBindResponse.RequestId"));
getRamBindResponse.setCode(context.stringValue("GetRamBindResponse.Code"));
getRamBindResponse.setMessage(context.stringValue("GetRamBindResponse.Message"));
getRamBindResponse.setSuccess(context.booleanValue("GetRamBindResponse.Success"));
RamBindDto ramBindDto = new RamBindDto();
ramBindDto.setRoleName(context.stringValue("GetRamBindResponse.RamBindDto.RoleName"));
getRamBindResponse.setRamBindDto(ramBindDto);
return getRamBindResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyunid-ag/1.0.0/com/aliyuncs/aliyunid_ag/transform
|
java-sources/com/aliyun/aliyun-java-sdk-aliyunid-ag/1.0.0/com/aliyuncs/aliyunid_ag/transform/v20180912/PaginateAgRelationsResponseUnmarshaller.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.aliyunid_ag.transform.v20180912;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.aliyunid_ag.model.v20180912.PaginateAgRelationsResponse;
import com.aliyuncs.aliyunid_ag.model.v20180912.PaginateAgRelationsResponse.AgRelationDto;
import java.util.Map;
import com.aliyuncs.transform.UnmarshallerContext;
public class PaginateAgRelationsResponseUnmarshaller {
public static PaginateAgRelationsResponse unmarshall(PaginateAgRelationsResponse paginateAgRelationsResponse, UnmarshallerContext context) {
paginateAgRelationsResponse.setRequestId(context.stringValue("PaginateAgRelationsResponse.RequestId"));
paginateAgRelationsResponse.setCode(context.stringValue("PaginateAgRelationsResponse.Code"));
paginateAgRelationsResponse.setMessage(context.stringValue("PaginateAgRelationsResponse.Message"));
paginateAgRelationsResponse.setSuccess(context.booleanValue("PaginateAgRelationsResponse.Success"));
paginateAgRelationsResponse.setPageNo(context.longValue("PaginateAgRelationsResponse.PageNo"));
paginateAgRelationsResponse.setPageSize(context.integerValue("PaginateAgRelationsResponse.PageSize"));
paginateAgRelationsResponse.setTotalCount(context.longValue("PaginateAgRelationsResponse.TotalCount"));
List<AgRelationDto> agRelationDtos = new ArrayList<AgRelationDto>();
for (int i = 0; i < context.lengthValue("PaginateAgRelationsResponse.AgRelationDtos.Length"); i++) {
AgRelationDto agRelationDto = new AgRelationDto();
agRelationDto.setPk(context.stringValue("PaginateAgRelationsResponse.AgRelationDtos["+ i +"].Pk"));
agRelationDto.setMpk(context.stringValue("PaginateAgRelationsResponse.AgRelationDtos["+ i +"].Mpk"));
agRelationDto.setType(context.stringValue("PaginateAgRelationsResponse.AgRelationDtos["+ i +"].Type"));
agRelationDtos.add(agRelationDto);
}
paginateAgRelationsResponse.setAgRelationDtos(agRelationDtos);
return paginateAgRelationsResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuninvoiceext/2.5.0/com/aliyuncs/aliyuninvoiceext/model
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuninvoiceext/2.5.0/com/aliyuncs/aliyuninvoiceext/model/v20180727/ApplyInvoiceRequest.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.aliyuninvoiceext.model.v20180727;
import com.aliyuncs.RpcAcsRequest;
import java.util.List;
/**
* @author auto create
* @version
*/
public class ApplyInvoiceRequest extends RpcAcsRequest<ApplyInvoiceResponse> {
public ApplyInvoiceRequest() {
super("aliyunInvoiceExt", "2018-07-27", "ApplyInvoice");
}
private Integer invoicingType;
private String applyUserNick;
private Boolean invoiceByAmount;
private Long customerId;
private List<Long> selectedIdss;
private Integer processWay;
private Long ownerId;
private Long invoiceAmount;
private Long addressId;
public Integer getInvoicingType() {
return this.invoicingType;
}
public void setInvoicingType(Integer invoicingType) {
this.invoicingType = invoicingType;
if(invoicingType != null){
putQueryParameter("InvoicingType", invoicingType.toString());
}
}
public String getApplyUserNick() {
return this.applyUserNick;
}
public void setApplyUserNick(String applyUserNick) {
this.applyUserNick = applyUserNick;
if(applyUserNick != null){
putQueryParameter("ApplyUserNick", applyUserNick);
}
}
public Boolean getInvoiceByAmount() {
return this.invoiceByAmount;
}
public void setInvoiceByAmount(Boolean invoiceByAmount) {
this.invoiceByAmount = invoiceByAmount;
if(invoiceByAmount != null){
putQueryParameter("InvoiceByAmount", invoiceByAmount.toString());
}
}
public Long getCustomerId() {
return this.customerId;
}
public void setCustomerId(Long customerId) {
this.customerId = customerId;
if(customerId != null){
putQueryParameter("CustomerId", customerId.toString());
}
}
public List<Long> getSelectedIdss() {
return this.selectedIdss;
}
public void setSelectedIdss(List<Long> selectedIdss) {
this.selectedIdss = selectedIdss;
if (selectedIdss != null) {
for (int i = 0; i < selectedIdss.size(); i++) {
putQueryParameter("SelectedIds." + (i + 1) , selectedIdss.get(i));
}
}
}
public Integer getProcessWay() {
return this.processWay;
}
public void setProcessWay(Integer processWay) {
this.processWay = processWay;
if(processWay != null){
putQueryParameter("ProcessWay", processWay.toString());
}
}
public Long getOwnerId() {
return this.ownerId;
}
public void setOwnerId(Long ownerId) {
this.ownerId = ownerId;
if(ownerId != null){
putQueryParameter("OwnerId", ownerId.toString());
}
}
public Long getInvoiceAmount() {
return this.invoiceAmount;
}
public void setInvoiceAmount(Long invoiceAmount) {
this.invoiceAmount = invoiceAmount;
if(invoiceAmount != null){
putQueryParameter("InvoiceAmount", invoiceAmount.toString());
}
}
public Long getAddressId() {
return this.addressId;
}
public void setAddressId(Long addressId) {
this.addressId = addressId;
if(addressId != null){
putQueryParameter("AddressId", addressId.toString());
}
}
@Override
public Class<ApplyInvoiceResponse> getResponseClass() {
return ApplyInvoiceResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuninvoiceext/2.5.0/com/aliyuncs/aliyuninvoiceext/model
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuninvoiceext/2.5.0/com/aliyuncs/aliyuninvoiceext/model/v20180727/ApplyInvoiceResponse.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.aliyuninvoiceext.model.v20180727;
import java.util.Map;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.aliyuninvoiceext.transform.v20180727.ApplyInvoiceResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ApplyInvoiceResponse extends AcsResponse {
private String requestId;
private Boolean success;
private String code;
private String message;
private Data data;
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 getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public Data getData() {
return this.data;
}
public void setData(Data data) {
this.data = data;
}
public static class Data {
private Long invoiceApplyId;
public Long getInvoiceApplyId() {
return this.invoiceApplyId;
}
public void setInvoiceApplyId(Long invoiceApplyId) {
this.invoiceApplyId = invoiceApplyId;
}
}
@Override
public ApplyInvoiceResponse getInstance(UnmarshallerContext context) {
return ApplyInvoiceResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuninvoiceext/2.5.0/com/aliyuncs/aliyuninvoiceext/model
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuninvoiceext/2.5.0/com/aliyuncs/aliyuninvoiceext/model/v20180727/QueryCustomerAddressListRequest.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.aliyuninvoiceext.model.v20180727;
import com.aliyuncs.RpcAcsRequest;
/**
* @author auto create
* @version
*/
public class QueryCustomerAddressListRequest extends RpcAcsRequest<QueryCustomerAddressListResponse> {
public QueryCustomerAddressListRequest() {
super("aliyunInvoiceExt", "2018-07-27", "QueryCustomerAddressList");
}
private Long ownerId;
public Long getOwnerId() {
return this.ownerId;
}
public void setOwnerId(Long ownerId) {
this.ownerId = ownerId;
if(ownerId != null){
putQueryParameter("OwnerId", ownerId.toString());
}
}
@Override
public Class<QueryCustomerAddressListResponse> getResponseClass() {
return QueryCustomerAddressListResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuninvoiceext/2.5.0/com/aliyuncs/aliyuninvoiceext/model
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuninvoiceext/2.5.0/com/aliyuncs/aliyuninvoiceext/model/v20180727/QueryCustomerAddressListResponse.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.aliyuninvoiceext.model.v20180727;
import java.util.List;
import java.util.Map;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.aliyuninvoiceext.transform.v20180727.QueryCustomerAddressListResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class QueryCustomerAddressListResponse extends AcsResponse {
private String requestId;
private Boolean success;
private String code;
private String message;
private Data data;
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 getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public Data getData() {
return this.data;
}
public void setData(Data data) {
this.data = data;
}
public static class Data {
private List<CustomerInvoiceAddress> customerInvoiceAddressList;
public List<CustomerInvoiceAddress> getCustomerInvoiceAddressList() {
return this.customerInvoiceAddressList;
}
public void setCustomerInvoiceAddressList(List<CustomerInvoiceAddress> customerInvoiceAddressList) {
this.customerInvoiceAddressList = customerInvoiceAddressList;
}
public static class CustomerInvoiceAddress {
private Long id;
private Long userId;
private String userNick;
private String addressee;
private String province;
private String city;
private String county;
private String street;
private String postalCode;
private String phone;
private String bizType;
private String deliveryAddress;
public Long getId() {
return this.id;
}
public void setId(Long id) {
this.id = id;
}
public Long getUserId() {
return this.userId;
}
public void setUserId(Long userId) {
this.userId = userId;
}
public String getUserNick() {
return this.userNick;
}
public void setUserNick(String userNick) {
this.userNick = userNick;
}
public String getAddressee() {
return this.addressee;
}
public void setAddressee(String addressee) {
this.addressee = addressee;
}
public String getProvince() {
return this.province;
}
public void setProvince(String province) {
this.province = province;
}
public String getCity() {
return this.city;
}
public void setCity(String city) {
this.city = city;
}
public String getCounty() {
return this.county;
}
public void setCounty(String county) {
this.county = county;
}
public String getStreet() {
return this.street;
}
public void setStreet(String street) {
this.street = street;
}
public String getPostalCode() {
return this.postalCode;
}
public void setPostalCode(String postalCode) {
this.postalCode = postalCode;
}
public String getPhone() {
return this.phone;
}
public void setPhone(String phone) {
this.phone = phone;
}
public String getBizType() {
return this.bizType;
}
public void setBizType(String bizType) {
this.bizType = bizType;
}
public String getDeliveryAddress() {
return this.deliveryAddress;
}
public void setDeliveryAddress(String deliveryAddress) {
this.deliveryAddress = deliveryAddress;
}
}
}
@Override
public QueryCustomerAddressListResponse getInstance(UnmarshallerContext context) {
return QueryCustomerAddressListResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuninvoiceext/2.5.0/com/aliyuncs/aliyuninvoiceext/model
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuninvoiceext/2.5.0/com/aliyuncs/aliyuninvoiceext/model/v20180727/QueryEvaluateListRequest.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.aliyuninvoiceext.model.v20180727;
import com.aliyuncs.RpcAcsRequest;
import java.util.List;
/**
* @author auto create
* @version
*/
public class QueryEvaluateListRequest extends RpcAcsRequest<QueryEvaluateListResponse> {
public QueryEvaluateListRequest() {
super("aliyunInvoiceExt", "2018-07-27", "QueryEvaluateList");
}
private String outBizId;
private Integer sortType;
private String endBizTime;
private Integer pageSize;
private List<String> bizTypeLists;
private Long endAmount;
private Integer type;
private Long ownerId;
private Integer pageNum;
private Long startAmount;
private String startBizTime;
public String getOutBizId() {
return this.outBizId;
}
public void setOutBizId(String outBizId) {
this.outBizId = outBizId;
if(outBizId != null){
putQueryParameter("OutBizId", outBizId);
}
}
public Integer getSortType() {
return this.sortType;
}
public void setSortType(Integer sortType) {
this.sortType = sortType;
if(sortType != null){
putQueryParameter("SortType", sortType.toString());
}
}
public String getEndBizTime() {
return this.endBizTime;
}
public void setEndBizTime(String endBizTime) {
this.endBizTime = endBizTime;
if(endBizTime != null){
putQueryParameter("EndBizTime", endBizTime);
}
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putQueryParameter("PageSize", pageSize.toString());
}
}
public List<String> getBizTypeLists() {
return this.bizTypeLists;
}
public void setBizTypeLists(List<String> bizTypeLists) {
this.bizTypeLists = bizTypeLists;
if (bizTypeLists != null) {
for (int i = 0; i < bizTypeLists.size(); i++) {
putQueryParameter("BizTypeList." + (i + 1) , bizTypeLists.get(i));
}
}
}
public Long getEndAmount() {
return this.endAmount;
}
public void setEndAmount(Long endAmount) {
this.endAmount = endAmount;
if(endAmount != null){
putQueryParameter("EndAmount", endAmount.toString());
}
}
public Integer getType() {
return this.type;
}
public void setType(Integer type) {
this.type = type;
if(type != null){
putQueryParameter("Type", type.toString());
}
}
public Long getOwnerId() {
return this.ownerId;
}
public void setOwnerId(Long ownerId) {
this.ownerId = ownerId;
if(ownerId != null){
putQueryParameter("OwnerId", ownerId.toString());
}
}
public Integer getPageNum() {
return this.pageNum;
}
public void setPageNum(Integer pageNum) {
this.pageNum = pageNum;
if(pageNum != null){
putQueryParameter("PageNum", pageNum.toString());
}
}
public Long getStartAmount() {
return this.startAmount;
}
public void setStartAmount(Long startAmount) {
this.startAmount = startAmount;
if(startAmount != null){
putQueryParameter("StartAmount", startAmount.toString());
}
}
public String getStartBizTime() {
return this.startBizTime;
}
public void setStartBizTime(String startBizTime) {
this.startBizTime = startBizTime;
if(startBizTime != null){
putQueryParameter("StartBizTime", startBizTime);
}
}
@Override
public Class<QueryEvaluateListResponse> getResponseClass() {
return QueryEvaluateListResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuninvoiceext/2.5.0/com/aliyuncs/aliyuninvoiceext/model
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuninvoiceext/2.5.0/com/aliyuncs/aliyuninvoiceext/model/v20180727/QueryEvaluateListResponse.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.aliyuninvoiceext.model.v20180727;
import java.util.List;
import java.util.Map;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.aliyuninvoiceext.transform.v20180727.QueryEvaluateListResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class QueryEvaluateListResponse extends AcsResponse {
private String requestId;
private Boolean success;
private String code;
private String message;
private Data data;
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 getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public Data getData() {
return this.data;
}
public void setData(Data data) {
this.data = data;
}
public static class Data {
private String hostId;
private Integer pageNum;
private Integer pageSize;
private Integer totalCount;
private List<Evaluate> evaluateList;
public String getHostId() {
return this.hostId;
}
public void setHostId(String hostId) {
this.hostId = hostId;
}
public Integer getPageNum() {
return this.pageNum;
}
public void setPageNum(Integer pageNum) {
this.pageNum = pageNum;
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
public Integer getTotalCount() {
return this.totalCount;
}
public void setTotalCount(Integer totalCount) {
this.totalCount = totalCount;
}
public List<Evaluate> getEvaluateList() {
return this.evaluateList;
}
public void setEvaluateList(List<Evaluate> evaluateList) {
this.evaluateList = evaluateList;
}
public static class Evaluate {
private Long id;
private String gmtCreate;
private String gmtModified;
private Long userId;
private String userNick;
private String outBizId;
private Long billId;
private Long itemId;
private String billCycle;
private String bizType;
private Long originalAmount;
private Long presentAmount;
private Long canInvoiceAmount;
private Long invoicedAmount;
private Long offsetCostAmount;
private Long offsetAcceptAmount;
private Integer status;
private String opId;
private String name;
private String bizTime;
private Integer type;
public Long getId() {
return this.id;
}
public void setId(Long id) {
this.id = id;
}
public String getGmtCreate() {
return this.gmtCreate;
}
public void setGmtCreate(String gmtCreate) {
this.gmtCreate = gmtCreate;
}
public String getGmtModified() {
return this.gmtModified;
}
public void setGmtModified(String gmtModified) {
this.gmtModified = gmtModified;
}
public Long getUserId() {
return this.userId;
}
public void setUserId(Long userId) {
this.userId = userId;
}
public String getUserNick() {
return this.userNick;
}
public void setUserNick(String userNick) {
this.userNick = userNick;
}
public String getOutBizId() {
return this.outBizId;
}
public void setOutBizId(String outBizId) {
this.outBizId = outBizId;
}
public Long getBillId() {
return this.billId;
}
public void setBillId(Long billId) {
this.billId = billId;
}
public Long getItemId() {
return this.itemId;
}
public void setItemId(Long itemId) {
this.itemId = itemId;
}
public String getBillCycle() {
return this.billCycle;
}
public void setBillCycle(String billCycle) {
this.billCycle = billCycle;
}
public String getBizType() {
return this.bizType;
}
public void setBizType(String bizType) {
this.bizType = bizType;
}
public Long getOriginalAmount() {
return this.originalAmount;
}
public void setOriginalAmount(Long originalAmount) {
this.originalAmount = originalAmount;
}
public Long getPresentAmount() {
return this.presentAmount;
}
public void setPresentAmount(Long presentAmount) {
this.presentAmount = presentAmount;
}
public Long getCanInvoiceAmount() {
return this.canInvoiceAmount;
}
public void setCanInvoiceAmount(Long canInvoiceAmount) {
this.canInvoiceAmount = canInvoiceAmount;
}
public Long getInvoicedAmount() {
return this.invoicedAmount;
}
public void setInvoicedAmount(Long invoicedAmount) {
this.invoicedAmount = invoicedAmount;
}
public Long getOffsetCostAmount() {
return this.offsetCostAmount;
}
public void setOffsetCostAmount(Long offsetCostAmount) {
this.offsetCostAmount = offsetCostAmount;
}
public Long getOffsetAcceptAmount() {
return this.offsetAcceptAmount;
}
public void setOffsetAcceptAmount(Long offsetAcceptAmount) {
this.offsetAcceptAmount = offsetAcceptAmount;
}
public Integer getStatus() {
return this.status;
}
public void setStatus(Integer status) {
this.status = status;
}
public String getOpId() {
return this.opId;
}
public void setOpId(String opId) {
this.opId = opId;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public String getBizTime() {
return this.bizTime;
}
public void setBizTime(String bizTime) {
this.bizTime = bizTime;
}
public Integer getType() {
return this.type;
}
public void setType(Integer type) {
this.type = type;
}
}
}
@Override
public QueryEvaluateListResponse getInstance(UnmarshallerContext context) {
return QueryEvaluateListResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuninvoiceext/2.5.0/com/aliyuncs/aliyuninvoiceext/model
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuninvoiceext/2.5.0/com/aliyuncs/aliyuninvoiceext/model/v20180727/QueryInvoicingCustomerListRequest.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.aliyuninvoiceext.model.v20180727;
import com.aliyuncs.RpcAcsRequest;
/**
* @author auto create
* @version
*/
public class QueryInvoicingCustomerListRequest extends RpcAcsRequest<QueryInvoicingCustomerListResponse> {
public QueryInvoicingCustomerListRequest() {
super("aliyunInvoiceExt", "2018-07-27", "QueryInvoicingCustomerList");
}
private Long ownerId;
public Long getOwnerId() {
return this.ownerId;
}
public void setOwnerId(Long ownerId) {
this.ownerId = ownerId;
if(ownerId != null){
putQueryParameter("OwnerId", ownerId.toString());
}
}
@Override
public Class<QueryInvoicingCustomerListResponse> getResponseClass() {
return QueryInvoicingCustomerListResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuninvoiceext/2.5.0/com/aliyuncs/aliyuninvoiceext/model
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuninvoiceext/2.5.0/com/aliyuncs/aliyuninvoiceext/model/v20180727/QueryInvoicingCustomerListResponse.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.aliyuninvoiceext.model.v20180727;
import java.util.List;
import java.util.Map;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.aliyuninvoiceext.transform.v20180727.QueryInvoicingCustomerListResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class QueryInvoicingCustomerListResponse extends AcsResponse {
private String requestId;
private Boolean success;
private String code;
private String message;
private Data data;
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 getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public Data getData() {
return this.data;
}
public void setData(Data data) {
this.data = data;
}
public static class Data {
private List<CustomerInvoice> customerInvoiceList;
public List<CustomerInvoice> getCustomerInvoiceList() {
return this.customerInvoiceList;
}
public void setCustomerInvoiceList(List<CustomerInvoice> customerInvoiceList) {
this.customerInvoiceList = customerInvoiceList;
}
public static class CustomerInvoice {
private Long id;
private Long userId;
private String userNick;
private String invoiceTitle;
private Long customerType;
private Long taxpayerType;
private String bank;
private String bankNo;
private String operatingLicenseAddress;
private String operatingLicensePhone;
private String registerNo;
private Long startCycle;
private Long status;
private String gmtCreate;
private String taxationLicense;
private Long adjustType;
private Long endCycle;
private String titleChangeInstructions;
private Long issueType;
private Long type;
public Long getId() {
return this.id;
}
public void setId(Long id) {
this.id = id;
}
public Long getUserId() {
return this.userId;
}
public void setUserId(Long userId) {
this.userId = userId;
}
public String getUserNick() {
return this.userNick;
}
public void setUserNick(String userNick) {
this.userNick = userNick;
}
public String getInvoiceTitle() {
return this.invoiceTitle;
}
public void setInvoiceTitle(String invoiceTitle) {
this.invoiceTitle = invoiceTitle;
}
public Long getCustomerType() {
return this.customerType;
}
public void setCustomerType(Long customerType) {
this.customerType = customerType;
}
public Long getTaxpayerType() {
return this.taxpayerType;
}
public void setTaxpayerType(Long taxpayerType) {
this.taxpayerType = taxpayerType;
}
public String getBank() {
return this.bank;
}
public void setBank(String bank) {
this.bank = bank;
}
public String getBankNo() {
return this.bankNo;
}
public void setBankNo(String bankNo) {
this.bankNo = bankNo;
}
public String getOperatingLicenseAddress() {
return this.operatingLicenseAddress;
}
public void setOperatingLicenseAddress(String operatingLicenseAddress) {
this.operatingLicenseAddress = operatingLicenseAddress;
}
public String getOperatingLicensePhone() {
return this.operatingLicensePhone;
}
public void setOperatingLicensePhone(String operatingLicensePhone) {
this.operatingLicensePhone = operatingLicensePhone;
}
public String getRegisterNo() {
return this.registerNo;
}
public void setRegisterNo(String registerNo) {
this.registerNo = registerNo;
}
public Long getStartCycle() {
return this.startCycle;
}
public void setStartCycle(Long startCycle) {
this.startCycle = startCycle;
}
public Long getStatus() {
return this.status;
}
public void setStatus(Long status) {
this.status = status;
}
public String getGmtCreate() {
return this.gmtCreate;
}
public void setGmtCreate(String gmtCreate) {
this.gmtCreate = gmtCreate;
}
public String getTaxationLicense() {
return this.taxationLicense;
}
public void setTaxationLicense(String taxationLicense) {
this.taxationLicense = taxationLicense;
}
public Long getAdjustType() {
return this.adjustType;
}
public void setAdjustType(Long adjustType) {
this.adjustType = adjustType;
}
public Long getEndCycle() {
return this.endCycle;
}
public void setEndCycle(Long endCycle) {
this.endCycle = endCycle;
}
public String getTitleChangeInstructions() {
return this.titleChangeInstructions;
}
public void setTitleChangeInstructions(String titleChangeInstructions) {
this.titleChangeInstructions = titleChangeInstructions;
}
public Long getIssueType() {
return this.issueType;
}
public void setIssueType(Long issueType) {
this.issueType = issueType;
}
public Long getType() {
return this.type;
}
public void setType(Long type) {
this.type = type;
}
}
}
@Override
public QueryInvoicingCustomerListResponse getInstance(UnmarshallerContext context) {
return QueryInvoicingCustomerListResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuninvoiceext/2.5.0/com/aliyuncs/aliyuninvoiceext/transform
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuninvoiceext/2.5.0/com/aliyuncs/aliyuninvoiceext/transform/v20180727/ApplyInvoiceResponseUnmarshaller.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.aliyuninvoiceext.transform.v20180727;
import com.aliyuncs.aliyuninvoiceext.model.v20180727.ApplyInvoiceResponse;
import com.aliyuncs.aliyuninvoiceext.model.v20180727.ApplyInvoiceResponse.Data;
import com.aliyuncs.transform.UnmarshallerContext;
public class ApplyInvoiceResponseUnmarshaller {
public static ApplyInvoiceResponse unmarshall(ApplyInvoiceResponse applyInvoiceResponse, UnmarshallerContext context) {
applyInvoiceResponse.setRequestId(context.stringValue("ApplyInvoiceResponse.RequestId"));
applyInvoiceResponse.setSuccess(context.booleanValue("ApplyInvoiceResponse.Success"));
applyInvoiceResponse.setCode(context.stringValue("ApplyInvoiceResponse.Code"));
applyInvoiceResponse.setMessage(context.stringValue("ApplyInvoiceResponse.Message"));
Data data = new Data();
data.setInvoiceApplyId(context.longValue("ApplyInvoiceResponse.Data.InvoiceApplyId"));
applyInvoiceResponse.setData(data);
return applyInvoiceResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuninvoiceext/2.5.0/com/aliyuncs/aliyuninvoiceext/transform
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuninvoiceext/2.5.0/com/aliyuncs/aliyuninvoiceext/transform/v20180727/QueryCustomerAddressListResponseUnmarshaller.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.aliyuninvoiceext.transform.v20180727;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.aliyuninvoiceext.model.v20180727.QueryCustomerAddressListResponse;
import com.aliyuncs.aliyuninvoiceext.model.v20180727.QueryCustomerAddressListResponse.Data;
import com.aliyuncs.aliyuninvoiceext.model.v20180727.QueryCustomerAddressListResponse.Data.CustomerInvoiceAddress;
import java.util.Map;
import com.aliyuncs.transform.UnmarshallerContext;
public class QueryCustomerAddressListResponseUnmarshaller {
public static QueryCustomerAddressListResponse unmarshall(QueryCustomerAddressListResponse queryCustomerAddressListResponse, UnmarshallerContext context) {
queryCustomerAddressListResponse.setRequestId(context.stringValue("QueryCustomerAddressListResponse.RequestId"));
queryCustomerAddressListResponse.setSuccess(context.booleanValue("QueryCustomerAddressListResponse.Success"));
queryCustomerAddressListResponse.setCode(context.stringValue("QueryCustomerAddressListResponse.Code"));
queryCustomerAddressListResponse.setMessage(context.stringValue("QueryCustomerAddressListResponse.Message"));
Data data = new Data();
List<CustomerInvoiceAddress> customerInvoiceAddressList = new ArrayList<CustomerInvoiceAddress>();
for (int i = 0; i < context.lengthValue("QueryCustomerAddressListResponse.Data.CustomerInvoiceAddressList.Length"); i++) {
CustomerInvoiceAddress customerInvoiceAddress = new CustomerInvoiceAddress();
customerInvoiceAddress.setId(context.longValue("QueryCustomerAddressListResponse.Data.CustomerInvoiceAddressList["+ i +"].Id"));
customerInvoiceAddress.setUserId(context.longValue("QueryCustomerAddressListResponse.Data.CustomerInvoiceAddressList["+ i +"].UserId"));
customerInvoiceAddress.setUserNick(context.stringValue("QueryCustomerAddressListResponse.Data.CustomerInvoiceAddressList["+ i +"].UserNick"));
customerInvoiceAddress.setAddressee(context.stringValue("QueryCustomerAddressListResponse.Data.CustomerInvoiceAddressList["+ i +"].Addressee"));
customerInvoiceAddress.setProvince(context.stringValue("QueryCustomerAddressListResponse.Data.CustomerInvoiceAddressList["+ i +"].Province"));
customerInvoiceAddress.setCity(context.stringValue("QueryCustomerAddressListResponse.Data.CustomerInvoiceAddressList["+ i +"].City"));
customerInvoiceAddress.setCounty(context.stringValue("QueryCustomerAddressListResponse.Data.CustomerInvoiceAddressList["+ i +"].County"));
customerInvoiceAddress.setStreet(context.stringValue("QueryCustomerAddressListResponse.Data.CustomerInvoiceAddressList["+ i +"].Street"));
customerInvoiceAddress.setPostalCode(context.stringValue("QueryCustomerAddressListResponse.Data.CustomerInvoiceAddressList["+ i +"].PostalCode"));
customerInvoiceAddress.setPhone(context.stringValue("QueryCustomerAddressListResponse.Data.CustomerInvoiceAddressList["+ i +"].Phone"));
customerInvoiceAddress.setBizType(context.stringValue("QueryCustomerAddressListResponse.Data.CustomerInvoiceAddressList["+ i +"].BizType"));
customerInvoiceAddress.setDeliveryAddress(context.stringValue("QueryCustomerAddressListResponse.Data.CustomerInvoiceAddressList["+ i +"].DeliveryAddress"));
customerInvoiceAddressList.add(customerInvoiceAddress);
}
data.setCustomerInvoiceAddressList(customerInvoiceAddressList);
queryCustomerAddressListResponse.setData(data);
return queryCustomerAddressListResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuninvoiceext/2.5.0/com/aliyuncs/aliyuninvoiceext/transform
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuninvoiceext/2.5.0/com/aliyuncs/aliyuninvoiceext/transform/v20180727/QueryEvaluateListResponseUnmarshaller.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.aliyuninvoiceext.transform.v20180727;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.aliyuninvoiceext.model.v20180727.QueryEvaluateListResponse;
import com.aliyuncs.aliyuninvoiceext.model.v20180727.QueryEvaluateListResponse.Data;
import com.aliyuncs.aliyuninvoiceext.model.v20180727.QueryEvaluateListResponse.Data.Evaluate;
import java.util.Map;
import com.aliyuncs.transform.UnmarshallerContext;
public class QueryEvaluateListResponseUnmarshaller {
public static QueryEvaluateListResponse unmarshall(QueryEvaluateListResponse queryEvaluateListResponse, UnmarshallerContext context) {
queryEvaluateListResponse.setRequestId(context.stringValue("QueryEvaluateListResponse.RequestId"));
queryEvaluateListResponse.setSuccess(context.booleanValue("QueryEvaluateListResponse.Success"));
queryEvaluateListResponse.setCode(context.stringValue("QueryEvaluateListResponse.Code"));
queryEvaluateListResponse.setMessage(context.stringValue("QueryEvaluateListResponse.Message"));
Data data = new Data();
data.setHostId(context.stringValue("QueryEvaluateListResponse.Data.HostId"));
data.setPageNum(context.integerValue("QueryEvaluateListResponse.Data.PageNum"));
data.setPageSize(context.integerValue("QueryEvaluateListResponse.Data.PageSize"));
data.setTotalCount(context.integerValue("QueryEvaluateListResponse.Data.TotalCount"));
List<Evaluate> evaluateList = new ArrayList<Evaluate>();
for (int i = 0; i < context.lengthValue("QueryEvaluateListResponse.Data.EvaluateList.Length"); i++) {
Evaluate evaluate = new Evaluate();
evaluate.setId(context.longValue("QueryEvaluateListResponse.Data.EvaluateList["+ i +"].Id"));
evaluate.setGmtCreate(context.stringValue("QueryEvaluateListResponse.Data.EvaluateList["+ i +"].GmtCreate"));
evaluate.setGmtModified(context.stringValue("QueryEvaluateListResponse.Data.EvaluateList["+ i +"].GmtModified"));
evaluate.setUserId(context.longValue("QueryEvaluateListResponse.Data.EvaluateList["+ i +"].UserId"));
evaluate.setUserNick(context.stringValue("QueryEvaluateListResponse.Data.EvaluateList["+ i +"].UserNick"));
evaluate.setOutBizId(context.stringValue("QueryEvaluateListResponse.Data.EvaluateList["+ i +"].OutBizId"));
evaluate.setBillId(context.longValue("QueryEvaluateListResponse.Data.EvaluateList["+ i +"].BillId"));
evaluate.setItemId(context.longValue("QueryEvaluateListResponse.Data.EvaluateList["+ i +"].ItemId"));
evaluate.setBillCycle(context.stringValue("QueryEvaluateListResponse.Data.EvaluateList["+ i +"].BillCycle"));
evaluate.setBizType(context.stringValue("QueryEvaluateListResponse.Data.EvaluateList["+ i +"].BizType"));
evaluate.setOriginalAmount(context.longValue("QueryEvaluateListResponse.Data.EvaluateList["+ i +"].OriginalAmount"));
evaluate.setPresentAmount(context.longValue("QueryEvaluateListResponse.Data.EvaluateList["+ i +"].PresentAmount"));
evaluate.setCanInvoiceAmount(context.longValue("QueryEvaluateListResponse.Data.EvaluateList["+ i +"].CanInvoiceAmount"));
evaluate.setInvoicedAmount(context.longValue("QueryEvaluateListResponse.Data.EvaluateList["+ i +"].InvoicedAmount"));
evaluate.setOffsetCostAmount(context.longValue("QueryEvaluateListResponse.Data.EvaluateList["+ i +"].OffsetCostAmount"));
evaluate.setOffsetAcceptAmount(context.longValue("QueryEvaluateListResponse.Data.EvaluateList["+ i +"].OffsetAcceptAmount"));
evaluate.setStatus(context.integerValue("QueryEvaluateListResponse.Data.EvaluateList["+ i +"].Status"));
evaluate.setOpId(context.stringValue("QueryEvaluateListResponse.Data.EvaluateList["+ i +"].OpId"));
evaluate.setName(context.stringValue("QueryEvaluateListResponse.Data.EvaluateList["+ i +"].Name"));
evaluate.setBizTime(context.stringValue("QueryEvaluateListResponse.Data.EvaluateList["+ i +"].BizTime"));
evaluate.setType(context.integerValue("QueryEvaluateListResponse.Data.EvaluateList["+ i +"].Type"));
evaluateList.add(evaluate);
}
data.setEvaluateList(evaluateList);
queryEvaluateListResponse.setData(data);
return queryEvaluateListResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuninvoiceext/2.5.0/com/aliyuncs/aliyuninvoiceext/transform
|
java-sources/com/aliyun/aliyun-java-sdk-aliyuninvoiceext/2.5.0/com/aliyuncs/aliyuninvoiceext/transform/v20180727/QueryInvoicingCustomerListResponseUnmarshaller.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.aliyuninvoiceext.transform.v20180727;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.aliyuninvoiceext.model.v20180727.QueryInvoicingCustomerListResponse;
import com.aliyuncs.aliyuninvoiceext.model.v20180727.QueryInvoicingCustomerListResponse.Data;
import com.aliyuncs.aliyuninvoiceext.model.v20180727.QueryInvoicingCustomerListResponse.Data.CustomerInvoice;
import java.util.Map;
import com.aliyuncs.transform.UnmarshallerContext;
public class QueryInvoicingCustomerListResponseUnmarshaller {
public static QueryInvoicingCustomerListResponse unmarshall(QueryInvoicingCustomerListResponse queryInvoicingCustomerListResponse, UnmarshallerContext context) {
queryInvoicingCustomerListResponse.setRequestId(context.stringValue("QueryInvoicingCustomerListResponse.RequestId"));
queryInvoicingCustomerListResponse.setSuccess(context.booleanValue("QueryInvoicingCustomerListResponse.Success"));
queryInvoicingCustomerListResponse.setCode(context.stringValue("QueryInvoicingCustomerListResponse.Code"));
queryInvoicingCustomerListResponse.setMessage(context.stringValue("QueryInvoicingCustomerListResponse.Message"));
Data data = new Data();
List<CustomerInvoice> customerInvoiceList = new ArrayList<CustomerInvoice>();
for (int i = 0; i < context.lengthValue("QueryInvoicingCustomerListResponse.Data.CustomerInvoiceList.Length"); i++) {
CustomerInvoice customerInvoice = new CustomerInvoice();
customerInvoice.setId(context.longValue("QueryInvoicingCustomerListResponse.Data.CustomerInvoiceList["+ i +"].Id"));
customerInvoice.setUserId(context.longValue("QueryInvoicingCustomerListResponse.Data.CustomerInvoiceList["+ i +"].UserId"));
customerInvoice.setUserNick(context.stringValue("QueryInvoicingCustomerListResponse.Data.CustomerInvoiceList["+ i +"].UserNick"));
customerInvoice.setInvoiceTitle(context.stringValue("QueryInvoicingCustomerListResponse.Data.CustomerInvoiceList["+ i +"].InvoiceTitle"));
customerInvoice.setCustomerType(context.longValue("QueryInvoicingCustomerListResponse.Data.CustomerInvoiceList["+ i +"].CustomerType"));
customerInvoice.setTaxpayerType(context.longValue("QueryInvoicingCustomerListResponse.Data.CustomerInvoiceList["+ i +"].TaxpayerType"));
customerInvoice.setBank(context.stringValue("QueryInvoicingCustomerListResponse.Data.CustomerInvoiceList["+ i +"].Bank"));
customerInvoice.setBankNo(context.stringValue("QueryInvoicingCustomerListResponse.Data.CustomerInvoiceList["+ i +"].BankNo"));
customerInvoice.setOperatingLicenseAddress(context.stringValue("QueryInvoicingCustomerListResponse.Data.CustomerInvoiceList["+ i +"].OperatingLicenseAddress"));
customerInvoice.setOperatingLicensePhone(context.stringValue("QueryInvoicingCustomerListResponse.Data.CustomerInvoiceList["+ i +"].OperatingLicensePhone"));
customerInvoice.setRegisterNo(context.stringValue("QueryInvoicingCustomerListResponse.Data.CustomerInvoiceList["+ i +"].RegisterNo"));
customerInvoice.setStartCycle(context.longValue("QueryInvoicingCustomerListResponse.Data.CustomerInvoiceList["+ i +"].StartCycle"));
customerInvoice.setStatus(context.longValue("QueryInvoicingCustomerListResponse.Data.CustomerInvoiceList["+ i +"].Status"));
customerInvoice.setGmtCreate(context.stringValue("QueryInvoicingCustomerListResponse.Data.CustomerInvoiceList["+ i +"].GmtCreate"));
customerInvoice.setTaxationLicense(context.stringValue("QueryInvoicingCustomerListResponse.Data.CustomerInvoiceList["+ i +"].TaxationLicense"));
customerInvoice.setAdjustType(context.longValue("QueryInvoicingCustomerListResponse.Data.CustomerInvoiceList["+ i +"].AdjustType"));
customerInvoice.setEndCycle(context.longValue("QueryInvoicingCustomerListResponse.Data.CustomerInvoiceList["+ i +"].EndCycle"));
customerInvoice.setTitleChangeInstructions(context.stringValue("QueryInvoicingCustomerListResponse.Data.CustomerInvoiceList["+ i +"].TitleChangeInstructions"));
customerInvoice.setIssueType(context.longValue("QueryInvoicingCustomerListResponse.Data.CustomerInvoiceList["+ i +"].IssueType"));
customerInvoice.setType(context.longValue("QueryInvoicingCustomerListResponse.Data.CustomerInvoiceList["+ i +"].Type"));
customerInvoiceList.add(customerInvoice);
}
data.setCustomerInvoiceList(customerInvoiceList);
queryInvoicingCustomerListResponse.setData(data);
return queryInvoicingCustomerListResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model/v20200708/AAARequest.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.amp.model.v20200708;
import com.aliyuncs.RoaAcsRequest;
import com.aliyuncs.http.MethodType;
/**
* @author auto create
* @version
*/
public class AAARequest extends RoaAcsRequest<AAAResponse> {
public AAARequest() {
super("amp", "2020-07-08", "AAA", "jeepproduct001");
setUriPattern("/aa");
setMethod(MethodType.POST);
}
@Override
public Class<AAAResponse> getResponseClass() {
return AAAResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model/v20200708/AAAResponse.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.amp.model.v20200708;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.amp.transform.v20200708.AAAResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class AAAResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public AAAResponse getInstance(UnmarshallerContext context) {
return AAAResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model/v20200708/AsadasdasdRequest.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.amp.model.v20200708;
import com.aliyuncs.RoaAcsRequest;
import com.aliyuncs.http.MethodType;
/**
* @author auto create
* @version
*/
public class AsadasdasdRequest extends RoaAcsRequest<AsadasdasdResponse> {
private String a;
public AsadasdasdRequest() {
super("amp", "2020-07-08", "Asadasdasd", "jeepproduct001");
setUriPattern("/asdxzc");
setMethod(MethodType.POST);
}
public String getA() {
return this.a;
}
public void setA(String a) {
this.a = a;
if(a != null){
putQueryParameter("A", a);
}
}
@Override
public Class<AsadasdasdResponse> getResponseClass() {
return AsadasdasdResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model/v20200708/AsadasdasdResponse.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.amp.model.v20200708;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.amp.transform.v20200708.AsadasdasdResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class AsadasdasdResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public AsadasdasdResponse getInstance(UnmarshallerContext context) {
return AsadasdasdResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model/v20200708/CoreEngineCopyRequest.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.amp.model.v20200708;
import com.aliyuncs.RoaAcsRequest;
import java.util.List;
import com.google.gson.Gson;
import com.google.gson.annotations.SerializedName;
import com.aliyuncs.http.MethodType;
/**
* @author auto create
* @version
*/
public class CoreEngineCopyRequest extends RoaAcsRequest<CoreEngineCopyResponse> {
private String param5;
@SerializedName("paramList")
private List<String> paramList;
private String param4;
@SerializedName("param1")
private List<Param1> param1;
public CoreEngineCopyRequest() {
super("amp", "2020-07-08", "CoreEngineCopy", "jeepproduct001");
setUriPattern("/api/new/demo");
setMethod(MethodType.POST);
}
public String getParam5() {
return this.param5;
}
public void setParam5(String param5) {
this.param5 = param5;
if(param5 != null){
putQueryParameter("param5", param5);
}
}
public List<String> getParamList() {
return this.paramList;
}
public void setParamList(List<String> paramList) {
this.paramList = paramList;
if (paramList != null) {
putQueryParameter("ParamList" , new Gson().toJson(paramList));
}
}
public String getParam4() {
return this.param4;
}
public void setParam4(String param4) {
this.param4 = param4;
if(param4 != null){
putQueryParameter("param4", param4);
}
}
public List<Param1> getParam1() {
return this.param1;
}
public void setParam1(List<Param1> param1) {
this.param1 = param1;
if (param1 != null) {
putBodyParameter("Param1" , new Gson().toJson(param1));
}
}
public static class Param1 {
@SerializedName("Param3")
private String param3;
@SerializedName("Param1")
private String param1;
@SerializedName("Param2")
private String param2;
public String getParam3() {
return this.param3;
}
public void setParam3(String param3) {
this.param3 = param3;
}
public String getParam1() {
return this.param1;
}
public void setParam1(String param1) {
this.param1 = param1;
}
public String getParam2() {
return this.param2;
}
public void setParam2(String param2) {
this.param2 = param2;
}
}
@Override
public Class<CoreEngineCopyResponse> getResponseClass() {
return CoreEngineCopyResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model/v20200708/CoreEngineCopyResponse.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.amp.model.v20200708;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.amp.transform.v20200708.CoreEngineCopyResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class CoreEngineCopyResponse extends AcsResponse {
@Override
public CoreEngineCopyResponse getInstance(UnmarshallerContext context) {
return CoreEngineCopyResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model/v20200708/CoreEngineRequest.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.amp.model.v20200708;
import com.aliyuncs.RoaAcsRequest;
import java.util.List;
import com.google.gson.Gson;
import com.google.gson.annotations.SerializedName;
import com.aliyuncs.http.MethodType;
/**
* @author auto create
* @version
*/
public class CoreEngineRequest extends RoaAcsRequest<CoreEngineResponse> {
@SerializedName("paramList")
private List<String> paramList;
private String param3;
@SerializedName("param1")
private List<Param1> param1;
private String param2;
public CoreEngineRequest() {
super("amp", "2020-07-08", "CoreEngine", "jeepproduct001");
setUriPattern("/getVersion/demo");
setMethod(MethodType.POST);
}
public List<String> getParamList() {
return this.paramList;
}
public void setParamList(List<String> paramList) {
this.paramList = paramList;
if (paramList != null) {
putQueryParameter("ParamList" , new Gson().toJson(paramList));
}
}
public String getParam3() {
return this.param3;
}
public void setParam3(String param3) {
this.param3 = param3;
if(param3 != null){
putQueryParameter("param3", param3);
}
}
public List<Param1> getParam1() {
return this.param1;
}
public void setParam1(List<Param1> param1) {
this.param1 = param1;
if (param1 != null) {
putBodyParameter("Param1" , new Gson().toJson(param1));
}
}
public String getParam2() {
return this.param2;
}
public void setParam2(String param2) {
this.param2 = param2;
if(param2 != null){
putQueryParameter("param2", param2);
}
}
public static class Param1 {
@SerializedName("Param3")
private String param3;
@SerializedName("Param1")
private String param1;
@SerializedName("Param2")
private String param2;
public String getParam3() {
return this.param3;
}
public void setParam3(String param3) {
this.param3 = param3;
}
public String getParam1() {
return this.param1;
}
public void setParam1(String param1) {
this.param1 = param1;
}
public String getParam2() {
return this.param2;
}
public void setParam2(String param2) {
this.param2 = param2;
}
}
@Override
public Class<CoreEngineResponse> getResponseClass() {
return CoreEngineResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model/v20200708/CoreEngineResponse.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.amp.model.v20200708;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.amp.transform.v20200708.CoreEngineResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class CoreEngineResponse extends AcsResponse {
private String requestId;
private Boolean success;
private String message;
private Long code;
private String data;
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 Long getCode() {
return this.code;
}
public void setCode(Long code) {
this.code = code;
}
public String getData() {
return this.data;
}
public void setData(String data) {
this.data = data;
}
@Override
public CoreEngineResponse getInstance(UnmarshallerContext context) {
return CoreEngineResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model/v20200708/CreateAPIRequest.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.amp.model.v20200708;
import com.aliyuncs.RoaAcsRequest;
import com.aliyuncs.http.MethodType;
/**
* @author auto create
* @version
*/
public class CreateAPIRequest extends RoaAcsRequest<CreateAPIResponse> {
private String customize_config;
public CreateAPIRequest() {
super("amp", "2020-07-08", "CreateAPI", "jeepproduct001");
setUriPattern("/[acd]");
setMethod(MethodType.GET);
}
public String getCustomize_config() {
return this.customize_config;
}
public void setCustomize_config(String customize_config) {
this.customize_config = customize_config;
if(customize_config != null){
putBodyParameter("customize_config", customize_config);
}
}
@Override
public Class<CreateAPIResponse> getResponseClass() {
return CreateAPIResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model/v20200708/CreateAPIResponse.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.amp.model.v20200708;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.amp.transform.v20200708.CreateAPIResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class CreateAPIResponse extends AcsResponse {
private String intanceId;
public String getIntanceId() {
return this.intanceId;
}
public void setIntanceId(String intanceId) {
this.intanceId = intanceId;
}
@Override
public CreateAPIResponse getInstance(UnmarshallerContext context) {
return CreateAPIResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model/v20200708/CreateClusterRequest.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.amp.model.v20200708;
import com.aliyuncs.RoaAcsRequest;
import com.aliyuncs.http.MethodType;
/**
* @author auto create
* @version
*/
public class CreateClusterRequest extends RoaAcsRequest<CreateClusterResponse> {
private String a;
public CreateClusterRequest() {
super("amp", "2020-07-08", "CreateCluster", "jeepproduct001");
setUriPattern("/clusters");
setMethod(MethodType.POST);
}
public String getA() {
return this.a;
}
public void setA(String a) {
this.a = a;
if(a != null){
putQueryParameter("A", a);
}
}
@Override
public Class<CreateClusterResponse> getResponseClass() {
return CreateClusterResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model/v20200708/CreateClusterResponse.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.amp.model.v20200708;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.amp.transform.v20200708.CreateClusterResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class CreateClusterResponse extends AcsResponse {
private String cluster_id;
private String request_id;
private String task_id;
public String getCluster_id() {
return this.cluster_id;
}
public void setCluster_id(String cluster_id) {
this.cluster_id = cluster_id;
}
public String getRequest_id() {
return this.request_id;
}
public void setRequest_id(String request_id) {
this.request_id = request_id;
}
public String getTask_id() {
return this.task_id;
}
public void setTask_id(String task_id) {
this.task_id = task_id;
}
@Override
public CreateClusterResponse getInstance(UnmarshallerContext context) {
return CreateClusterResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model/v20200708/CreateClusterSpecial111Request.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.amp.model.v20200708;
import com.aliyuncs.RoaAcsRequest;
import com.aliyuncs.http.MethodType;
/**
* @author auto create
* @version
*/
public class CreateClusterSpecial111Request extends RoaAcsRequest<CreateClusterSpecial111Response> {
private String add1;
public CreateClusterSpecial111Request() {
super("amp", "2020-07-08", "CreateClusterSpecial111", "jeepproduct001");
setUriPattern("/clusters/[Cid]/[Pid]/[aaa]/sdasd11/[nnn]");
setMethod(MethodType.POST);
}
public String getAdd1() {
return this.add1;
}
public void setAdd1(String add1) {
this.add1 = add1;
if(add1 != null){
putHeaderParameter("Add1", add1);
}
}
@Override
public Class<CreateClusterSpecial111Response> getResponseClass() {
return CreateClusterSpecial111Response.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model/v20200708/CreateClusterSpecial111Response.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.amp.model.v20200708;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.amp.transform.v20200708.CreateClusterSpecial111ResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class CreateClusterSpecial111Response extends AcsResponse {
private String success;
public String getSuccess() {
return this.success;
}
public void setSuccess(String success) {
this.success = success;
}
@Override
public CreateClusterSpecial111Response getInstance(UnmarshallerContext context) {
return CreateClusterSpecial111ResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model/v20200708/CreateClusterSpecialRequest.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.amp.model.v20200708;
import com.aliyuncs.RoaAcsRequest;
import com.aliyuncs.http.MethodType;
/**
* @author auto create
* @version
*/
public class CreateClusterSpecialRequest extends RoaAcsRequest<CreateClusterSpecialResponse> {
private String ytoken;
private String xtoken;
private String filter1;
private Long pid;
private Boolean filter2;
private String cid;
public CreateClusterSpecialRequest() {
super("amp", "2020-07-08", "CreateClusterSpecial", "jeepproduct001");
setUriPattern("/clusters/[Cid]/[Pid]/[aaa]/sdasd/[nnn]");
setMethod(MethodType.POST);
}
public String getYtoken() {
return this.ytoken;
}
public void setYtoken(String ytoken) {
this.ytoken = ytoken;
if(ytoken != null){
putHeaderParameter("Y-token", ytoken);
}
}
public String getXtoken() {
return this.xtoken;
}
public void setXtoken(String xtoken) {
this.xtoken = xtoken;
if(xtoken != null){
putHeaderParameter("X-token", xtoken);
}
}
public String getFilter1() {
return this.filter1;
}
public void setFilter1(String filter1) {
this.filter1 = filter1;
if(filter1 != null){
putQueryParameter("Filter1", filter1);
}
}
public Long getPid() {
return this.pid;
}
public void setPid(Long pid) {
this.pid = pid;
if(pid != null){
putPathParameter("Pid", pid.toString());
}
}
public Boolean getFilter2() {
return this.filter2;
}
public void setFilter2(Boolean filter2) {
this.filter2 = filter2;
if(filter2 != null){
putQueryParameter("Filter2", filter2.toString());
}
}
public String getCid() {
return this.cid;
}
public void setCid(String cid) {
this.cid = cid;
if(cid != null){
putPathParameter("Cid", cid);
}
}
@Override
public Class<CreateClusterSpecialResponse> getResponseClass() {
return CreateClusterSpecialResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model/v20200708/CreateClusterSpecialResponse.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.amp.model.v20200708;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.amp.transform.v20200708.CreateClusterSpecialResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class CreateClusterSpecialResponse extends AcsResponse {
private String cluster_id;
private String request_id;
private String task_id;
public String getCluster_id() {
return this.cluster_id;
}
public void setCluster_id(String cluster_id) {
this.cluster_id = cluster_id;
}
public String getRequest_id() {
return this.request_id;
}
public void setRequest_id(String request_id) {
this.request_id = request_id;
}
public String getTask_id() {
return this.task_id;
}
public void setTask_id(String task_id) {
this.task_id = task_id;
}
@Override
public CreateClusterSpecialResponse getInstance(UnmarshallerContext context) {
return CreateClusterSpecialResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model/v20200708/CreateDataSourceRequest.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.amp.model.v20200708;
import com.aliyuncs.RoaAcsRequest;
import com.aliyuncs.http.MethodType;
/**
* @author auto create
* @version
*/
public class CreateDataSourceRequest extends RoaAcsRequest<CreateDataSourceResponse> {
private String body;
public CreateDataSourceRequest() {
super("amp", "2020-07-08", "CreateDataSource", "jeepproduct001");
setUriPattern("/api/v1/datasources");
setMethod(MethodType.POST);
}
public String getBody() {
return this.body;
}
public void setBody(String body) {
this.body = body;
if(body != null){
putBodyParameter("body", body);
}
}
@Override
public Class<CreateDataSourceResponse> getResponseClass() {
return CreateDataSourceResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model/v20200708/CreateDataSourceResponse.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.amp.model.v20200708;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.amp.transform.v20200708.CreateDataSourceResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class CreateDataSourceResponse extends AcsResponse {
private String dataSourceId;
private String requestId;
public String getDataSourceId() {
return this.dataSourceId;
}
public void setDataSourceId(String dataSourceId) {
this.dataSourceId = dataSourceId;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public CreateDataSourceResponse getInstance(UnmarshallerContext context) {
return CreateDataSourceResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model/v20200708/DescribeEdgeMachineModelsRequest.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.amp.model.v20200708;
import com.aliyuncs.RoaAcsRequest;
import com.aliyuncs.http.MethodType;
/**
* @author auto create
* @version
*/
public class DescribeEdgeMachineModelsRequest extends RoaAcsRequest<DescribeEdgeMachineModelsResponse> {
private String rRFEW;
public DescribeEdgeMachineModelsRequest() {
super("amp", "2020-07-08", "DescribeEdgeMachineModels", "jeepproduct001");
setUriPattern("/edge_machines/models");
setMethod(MethodType.GET);
}
public String getRRFEW() {
return this.rRFEW;
}
public void setRRFEW(String rRFEW) {
this.rRFEW = rRFEW;
if(rRFEW != null){
putQueryParameter("RRFEW", rRFEW);
}
}
@Override
public Class<DescribeEdgeMachineModelsResponse> getResponseClass() {
return DescribeEdgeMachineModelsResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model/v20200708/DescribeEdgeMachineModelsResponse.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.amp.model.v20200708;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.amp.transform.v20200708.DescribeEdgeMachineModelsResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeEdgeMachineModelsResponse extends AcsResponse {
private List<Models_info> models;
public List<Models_info> getModels() {
return this.models;
}
public void setModels(List<Models_info> models) {
this.models = models;
}
public static class Models_info {
private String model_id;
private String created;
private String model;
private String description;
private String cpu_arch;
private Integer cpu;
private Integer memory;
public String getModel_id() {
return this.model_id;
}
public void setModel_id(String model_id) {
this.model_id = model_id;
}
public String getCreated() {
return this.created;
}
public void setCreated(String created) {
this.created = created;
}
public String getModel() {
return this.model;
}
public void setModel(String model) {
this.model = model;
}
public String getDescription() {
return this.description;
}
public void setDescription(String description) {
this.description = description;
}
public String getCpu_arch() {
return this.cpu_arch;
}
public void setCpu_arch(String cpu_arch) {
this.cpu_arch = cpu_arch;
}
public Integer getCpu() {
return this.cpu;
}
public void setCpu(Integer cpu) {
this.cpu = cpu;
}
public Integer getMemory() {
return this.memory;
}
public void setMemory(Integer memory) {
this.memory = memory;
}
}
@Override
public DescribeEdgeMachineModelsResponse getInstance(UnmarshallerContext context) {
return DescribeEdgeMachineModelsResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model/v20200708/DingAPITcTcRequest.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.amp.model.v20200708;
import com.aliyuncs.RoaAcsRequest;
import com.aliyuncs.http.MethodType;
/**
* @author auto create
* @version
*/
public class DingAPITcTcRequest extends RoaAcsRequest<DingAPITcTcResponse> {
public DingAPITcTcRequest() {
super("amp", "2020-07-08", "DingAPITcTc", "jeepproduct001");
setUriPattern("/ding/tctc");
setMethod(MethodType.POST);
}
@Override
public Class<DingAPITcTcResponse> getResponseClass() {
return DingAPITcTcResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model/v20200708/DingAPITcTcResponse.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.amp.model.v20200708;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.amp.transform.v20200708.DingAPITcTcResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DingAPITcTcResponse extends AcsResponse {
private String requestId;
private Res res;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Res getRes() {
return this.res;
}
public void setRes(Res res) {
this.res = res;
}
public static class Res {
private String user;
public String getUser() {
return this.user;
}
public void setUser(String user) {
this.user = user;
}
}
@Override
public DingAPITcTcResponse getInstance(UnmarshallerContext context) {
return DingAPITcTcResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model/v20200708/DingAPITcYRequest.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.amp.model.v20200708;
import com.aliyuncs.RoaAcsRequest;
import com.aliyuncs.http.MethodType;
/**
* @author auto create
* @version
*/
public class DingAPITcYRequest extends RoaAcsRequest<DingAPITcYResponse> {
private String queryIds;
public DingAPITcYRequest() {
super("amp", "2020-07-08", "DingAPITcY", "jeepproduct001");
setUriPattern("/ding/t2y");
setMethod(MethodType.POST);
}
public String getQueryIds() {
return this.queryIds;
}
public void setQueryIds(String queryIds) {
this.queryIds = queryIds;
if(queryIds != null){
putQueryParameter("QueryIds", queryIds);
}
}
@Override
public Class<DingAPITcYResponse> getResponseClass() {
return DingAPITcYResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model/v20200708/DingAPITcYResponse.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.amp.model.v20200708;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.amp.transform.v20200708.DingAPITcYResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DingAPITcYResponse extends AcsResponse {
private String requestId;
private String result;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getResult() {
return this.result;
}
public void setResult(String result) {
this.result = result;
}
@Override
public DingAPITcYResponse getInstance(UnmarshallerContext context) {
return DingAPITcYResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model/v20200708/EdssRequest.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.amp.model.v20200708;
import com.aliyuncs.RoaAcsRequest;
import com.aliyuncs.http.MethodType;
/**
* @author auto create
* @version
*/
public class EdssRequest extends RoaAcsRequest<EdssResponse> {
private String a;
public EdssRequest() {
super("amp", "2020-07-08", "Edss", "jeepproduct001");
setUriPattern("/efe/e");
setMethod(MethodType.POST);
}
public String getA() {
return this.a;
}
public void setA(String a) {
this.a = a;
if(a != null){
putQueryParameter("A", a);
}
}
@Override
public Class<EdssResponse> getResponseClass() {
return EdssResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model/v20200708/EdssResponse.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.amp.model.v20200708;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.amp.transform.v20200708.EdssResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class EdssResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public EdssResponse getInstance(UnmarshallerContext context) {
return EdssResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model/v20200708/HuichengTestRoaDataApiRequest.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.amp.model.v20200708;
import com.aliyuncs.RoaAcsRequest;
import com.aliyuncs.http.MethodType;
/**
* @author auto create
* @version
*/
public class HuichengTestRoaDataApiRequest extends RoaAcsRequest<HuichengTestRoaDataApiResponse> {
public HuichengTestRoaDataApiRequest() {
super("amp", "2020-07-08", "HuichengTestRoaDataApi", "jeepproduct001");
setUriPattern("/HuichengTestRoaDataApi");
setMethod(MethodType.POST);
}
@Override
public Class<HuichengTestRoaDataApiResponse> getResponseClass() {
return HuichengTestRoaDataApiResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model/v20200708/HuichengTestRoaDataApiResponse.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.amp.model.v20200708;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.amp.transform.v20200708.HuichengTestRoaDataApiResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class HuichengTestRoaDataApiResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public HuichengTestRoaDataApiResponse getInstance(UnmarshallerContext context) {
return HuichengTestRoaDataApiResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model/v20200708/LastTestDuheRequest.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.amp.model.v20200708;
import com.aliyuncs.RoaAcsRequest;
import com.aliyuncs.http.MethodType;
/**
* @author auto create
* @version
*/
public class LastTestDuheRequest extends RoaAcsRequest<LastTestDuheResponse> {
public LastTestDuheRequest() {
super("amp", "2020-07-08", "LastTestDuhe", "jeepproduct001");
setUriPattern("/aef/a");
setMethod(MethodType.POST);
}
@Override
public Class<LastTestDuheResponse> getResponseClass() {
return LastTestDuheResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model/v20200708/LastTestDuheResponse.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.amp.model.v20200708;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.amp.transform.v20200708.LastTestDuheResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class LastTestDuheResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public LastTestDuheResponse getInstance(UnmarshallerContext context) {
return LastTestDuheResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model/v20200708/LastTestYingSheRequest.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.amp.model.v20200708;
import com.aliyuncs.RoaAcsRequest;
import com.aliyuncs.http.MethodType;
/**
* @author auto create
* @version
*/
public class LastTestYingSheRequest extends RoaAcsRequest<LastTestYingSheResponse> {
private String body;
public LastTestYingSheRequest() {
super("amp", "2020-07-08", "LastTestYingShe", "jeepproduct001");
setUriPattern("/aef/yig");
setMethod(MethodType.POST);
}
public String getBody() {
return this.body;
}
public void setBody(String body) {
this.body = body;
if(body != null){
putBodyParameter("body", body);
}
}
@Override
public Class<LastTestYingSheResponse> getResponseClass() {
return LastTestYingSheResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model/v20200708/LastTestYingSheResponse.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.amp.model.v20200708;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.amp.transform.v20200708.LastTestYingSheResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class LastTestYingSheResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public LastTestYingSheResponse getInstance(UnmarshallerContext context) {
return LastTestYingSheResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model/v20200708/MaoTestRequest.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.amp.model.v20200708;
import com.aliyuncs.RoaAcsRequest;
import com.aliyuncs.http.MethodType;
/**
* @author auto create
* @version
*/
public class MaoTestRequest extends RoaAcsRequest<MaoTestResponse> {
private String aA;
public MaoTestRequest() {
super("amp", "2020-07-08", "MaoTest", "jeepproduct001");
setUriPattern("/rmo/efe");
setMethod(MethodType.POST);
}
public String getAA() {
return this.aA;
}
public void setAA(String aA) {
this.aA = aA;
if(aA != null){
putQueryParameter("AA", aA);
}
}
@Override
public Class<MaoTestResponse> getResponseClass() {
return MaoTestResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model/v20200708/MaoTestResponse.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.amp.model.v20200708;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.amp.transform.v20200708.MaoTestResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class MaoTestResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public MaoTestResponse getInstance(UnmarshallerContext context) {
return MaoTestResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model/v20200708/MaoefeTsRequest.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.amp.model.v20200708;
import com.aliyuncs.RoaAcsRequest;
import com.aliyuncs.http.MethodType;
/**
* @author auto create
* @version
*/
public class MaoefeTsRequest extends RoaAcsRequest<MaoefeTsResponse> {
public MaoefeTsRequest() {
super("amp", "2020-07-08", "MaoefeTs", "jeepproduct001");
setUriPattern("/eo/efe");
setMethod(MethodType.POST);
}
@Override
public Class<MaoefeTsResponse> getResponseClass() {
return MaoefeTsResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model/v20200708/MaoefeTsResponse.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.amp.model.v20200708;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.amp.transform.v20200708.MaoefeTsResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class MaoefeTsResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public MaoefeTsResponse getInstance(UnmarshallerContext context) {
return MaoefeTsResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model/v20200708/MyROAHTTPRequest.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.amp.model.v20200708;
import com.aliyuncs.RoaAcsRequest;
import com.aliyuncs.http.MethodType;
/**
* @author auto create
* @version
*/
public class MyROAHTTPRequest extends RoaAcsRequest<MyROAHTTPResponse> {
private String requestId;
public MyROAHTTPRequest() {
super("amp", "2020-07-08", "MyROAHTTP", "jeepproduct001");
setUriPattern("/rpc/v1/demo8");
setMethod(MethodType.POST);
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
if(requestId != null){
putQueryParameter("requestId", requestId);
}
}
@Override
public Class<MyROAHTTPResponse> getResponseClass() {
return MyROAHTTPResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model/v20200708/MyROAHTTPResponse.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.amp.model.v20200708;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.amp.transform.v20200708.MyROAHTTPResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class MyROAHTTPResponse extends AcsResponse {
private String requestId;
private Address address;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Address getAddress() {
return this.address;
}
public void setAddress(Address address) {
this.address = address;
}
public static class Address {
private String name;
private Integer code;
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public Integer getCode() {
return this.code;
}
public void setCode(Integer code) {
this.code = code;
}
}
@Override
public MyROAHTTPResponse getInstance(UnmarshallerContext context) {
return MyROAHTTPResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model/v20200708/MyRoaApiRequest.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.amp.model.v20200708;
import com.aliyuncs.RoaAcsRequest;
import com.aliyuncs.http.MethodType;
/**
* @author auto create
* @version
*/
public class MyRoaApiRequest extends RoaAcsRequest<MyRoaApiResponse> {
private String resourceownerid;
private String resourceowneraccount;
private String securitytoken;
private String owneraccount;
private String name;
private String accesskeysecret;
private String id;
private String ownerid;
public MyRoaApiRequest() {
super("amp", "2020-07-08", "MyRoaApi", "jeepproduct001");
setUriPattern("/my/roa/test");
setMethod(MethodType.GET);
}
public String getResourceownerid() {
return this.resourceownerid;
}
public void setResourceownerid(String resourceownerid) {
this.resourceownerid = resourceownerid;
if(resourceownerid != null){
putQueryParameter("resourceownerid", resourceownerid);
}
}
public String getResourceowneraccount() {
return this.resourceowneraccount;
}
public void setResourceowneraccount(String resourceowneraccount) {
this.resourceowneraccount = resourceowneraccount;
if(resourceowneraccount != null){
putPathParameter("resourceowneraccount", resourceowneraccount);
}
}
public String getSecuritytoken() {
return this.securitytoken;
}
public void setSecuritytoken(String securitytoken) {
this.securitytoken = securitytoken;
if(securitytoken != null){
putQueryParameter("securitytoken", securitytoken);
}
}
public String getOwneraccount() {
return this.owneraccount;
}
public void setOwneraccount(String owneraccount) {
this.owneraccount = owneraccount;
if(owneraccount != null){
putHeaderParameter("owneraccount", owneraccount);
}
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
if(name != null){
putQueryParameter("name", name);
}
}
public String getAccesskeysecret() {
return this.accesskeysecret;
}
public void setAccesskeysecret(String accesskeysecret) {
this.accesskeysecret = accesskeysecret;
if(accesskeysecret != null){
putQueryParameter("accesskeysecret", accesskeysecret);
}
}
public String getId() {
return this.id;
}
public void setId(String id) {
this.id = id;
if(id != null){
putQueryParameter("id", id);
}
}
public String getOwnerid() {
return this.ownerid;
}
public void setOwnerid(String ownerid) {
this.ownerid = ownerid;
if(ownerid != null){
putQueryParameter("ownerid", ownerid);
}
}
@Override
public Class<MyRoaApiResponse> getResponseClass() {
return MyRoaApiResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model/v20200708/MyRoaApiResponse.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.amp.model.v20200708;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.amp.transform.v20200708.MyRoaApiResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class MyRoaApiResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public MyRoaApiResponse getInstance(UnmarshallerContext context) {
return MyRoaApiResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model/v20200708/ProgressRequest.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.amp.model.v20200708;
import com.aliyuncs.RoaAcsRequest;
import com.aliyuncs.http.ProtocolType;
import com.aliyuncs.http.MethodType;
/**
* @author auto create
* @version
*/
public class ProgressRequest extends RoaAcsRequest<ProgressResponse> {
private Integer total;
private String test;
private String processId;
private String taskCode;
private Integer addend;
public ProgressRequest() {
super("amp", "2020-07-08", "Progress", "jeepproduct001");
setProtocol(ProtocolType.HTTPS);
setUriPattern("/Progress");
setMethod(MethodType.POST);
}
public Integer getTotal() {
return this.total;
}
public void setTotal(Integer total) {
this.total = total;
if(total != null){
putBodyParameter("Total", total.toString());
}
}
public String getTest() {
return this.test;
}
public void setTest(String test) {
this.test = test;
if(test != null){
putBodyParameter("Test", test);
}
}
public String getProcessId() {
return this.processId;
}
public void setProcessId(String processId) {
this.processId = processId;
if(processId != null){
putBodyParameter("ProcessId", processId);
}
}
public String getTaskCode() {
return this.taskCode;
}
public void setTaskCode(String taskCode) {
this.taskCode = taskCode;
if(taskCode != null){
putBodyParameter("TaskCode", taskCode);
}
}
public Integer getAddend() {
return this.addend;
}
public void setAddend(Integer addend) {
this.addend = addend;
if(addend != null){
putBodyParameter("Addend", addend.toString());
}
}
@Override
public Class<ProgressResponse> getResponseClass() {
return ProgressResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model/v20200708/ProgressResponse.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.amp.model.v20200708;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.amp.transform.v20200708.ProgressResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ProgressResponse extends AcsResponse {
@Override
public ProgressResponse getInstance(UnmarshallerContext context) {
return ProgressResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model/v20200708/RoaDuheYsTestRequest.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.amp.model.v20200708;
import com.aliyuncs.RoaAcsRequest;
import java.util.Map;
import com.google.gson.Gson;
import com.google.gson.annotations.SerializedName;
import com.aliyuncs.http.MethodType;
/**
* @author auto create
* @version
*/
public class RoaDuheYsTestRequest extends RoaAcsRequest<RoaDuheYsTestResponse> {
@SerializedName("body")
private Body body;
public RoaDuheYsTestRequest() {
super("amp", "2020-07-08", "RoaDuheYsTest", "jeepproduct001");
setUriPattern("/roa/duhe/test");
setMethod(MethodType.POST);
}
public Body getBody() {
return this.body;
}
public void setBody(Body body) {
this.body = body;
if (body != null) {
putBodyParameter("body" , new Gson().toJson(body));
}
}
public static class Body {
@SerializedName("GatewayInfomation")
private Map<String,String> gatewayInfomation;
@SerializedName("BizSystemParameters")
private Map<String,String> bizSystemParameters;
@SerializedName("Data")
private String data;
@SerializedName("BizGenericParameters")
private Map<String,BizGenericParametersItem> bizGenericParameters;
@SerializedName("BizContext")
private Map<String,BizContextItem> bizContext;
@SerializedName("InvokeInfomation")
private Map<String,String> invokeInfomation;
public Map<String,String> getGatewayInfomation() {
return this.gatewayInfomation;
}
public void setGatewayInfomation(Map<String,String> gatewayInfomation) {
this.gatewayInfomation = gatewayInfomation;
}
public Map<String,String> getBizSystemParameters() {
return this.bizSystemParameters;
}
public void setBizSystemParameters(Map<String,String> bizSystemParameters) {
this.bizSystemParameters = bizSystemParameters;
}
public String getData() {
return this.data;
}
public void setData(String data) {
this.data = data;
}
public Map<String,BizGenericParametersItem> getBizGenericParameters() {
return this.bizGenericParameters;
}
public void setBizGenericParameters(Map<String,BizGenericParametersItem> bizGenericParameters) {
this.bizGenericParameters = bizGenericParameters;
}
public Map<String,BizContextItem> getBizContext() {
return this.bizContext;
}
public void setBizContext(Map<String,BizContextItem> bizContext) {
this.bizContext = bizContext;
}
public Map<String,String> getInvokeInfomation() {
return this.invokeInfomation;
}
public void setInvokeInfomation(Map<String,String> invokeInfomation) {
this.invokeInfomation = invokeInfomation;
}
public static class BizGenericParametersItem {
@SerializedName("Param")
private String param;
public String getParam() {
return this.param;
}
public void setParam(String param) {
this.param = param;
}
}
public static class BizContextItem {
@SerializedName("Param")
private String param;
public String getParam() {
return this.param;
}
public void setParam(String param) {
this.param = param;
}
}
}
@Override
public Class<RoaDuheYsTestResponse> getResponseClass() {
return RoaDuheYsTestResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model/v20200708/RoaDuheYsTestResponse.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.amp.model.v20200708;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.amp.transform.v20200708.RoaDuheYsTestResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class RoaDuheYsTestResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public RoaDuheYsTestResponse getInstance(UnmarshallerContext context) {
return RoaDuheYsTestResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model/v20200708/RoaHsfMutilTestRequest.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.amp.model.v20200708;
import com.aliyuncs.RoaAcsRequest;
import com.google.gson.Gson;
import com.google.gson.annotations.SerializedName;
import com.aliyuncs.http.MethodType;
/**
* @author auto create
* @version
*/
public class RoaHsfMutilTestRequest extends RoaAcsRequest<RoaHsfMutilTestResponse> {
@SerializedName("user")
private User user;
private String id;
public RoaHsfMutilTestRequest() {
super("amp", "2020-07-08", "RoaHsfMutilTest", "jeepproduct001");
setUriPattern("/roefe/efe");
setMethod(MethodType.POST);
}
public User getUser() {
return this.user;
}
public void setUser(User user) {
this.user = user;
if (user != null) {
putBodyParameter("User" , new Gson().toJson(user));
}
}
public String getId() {
return this.id;
}
public void setId(String id) {
this.id = id;
if(id != null){
putBodyParameter("Id", id);
}
}
public static class User {
@SerializedName("Name")
private String name;
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
}
@Override
public Class<RoaHsfMutilTestResponse> getResponseClass() {
return RoaHsfMutilTestResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model/v20200708/RoaHsfMutilTestResponse.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.amp.model.v20200708;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.amp.transform.v20200708.RoaHsfMutilTestResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class RoaHsfMutilTestResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public RoaHsfMutilTestResponse getInstance(UnmarshallerContext context) {
return RoaHsfMutilTestResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model/v20200708/RoaHsfTestRequest.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.amp.model.v20200708;
import com.aliyuncs.RoaAcsRequest;
import com.google.gson.Gson;
import com.google.gson.annotations.SerializedName;
import com.aliyuncs.http.MethodType;
/**
* @author auto create
* @version
*/
public class RoaHsfTestRequest extends RoaAcsRequest<RoaHsfTestResponse> {
@SerializedName("body")
private Body body;
public RoaHsfTestRequest() {
super("amp", "2020-07-08", "RoaHsfTest", "jeepproduct001");
setUriPattern("/roa/hsf/test");
setMethod(MethodType.POST);
}
public Body getBody() {
return this.body;
}
public void setBody(Body body) {
this.body = body;
if (body != null) {
putBodyParameter("body" , new Gson().toJson(body));
}
}
public static class Body {
@SerializedName("id")
private String id;
public String getId() {
return this.id;
}
public void setId(String id) {
this.id = id;
}
}
@Override
public Class<RoaHsfTestResponse> getResponseClass() {
return RoaHsfTestResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model/v20200708/RoaHsfTestResponse.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.amp.model.v20200708;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.amp.transform.v20200708.RoaHsfTestResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class RoaHsfTestResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public RoaHsfTestResponse getInstance(UnmarshallerContext context) {
return RoaHsfTestResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model/v20200708/SecondAPIRequest.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.amp.model.v20200708;
import com.aliyuncs.RoaAcsRequest;
import com.aliyuncs.http.MethodType;
/**
* @author auto create
* @version
*/
public class SecondAPIRequest extends RoaAcsRequest<SecondAPIResponse> {
public SecondAPIRequest() {
super("amp", "2020-07-08", "SecondAPI", "jeepproduct001");
setUriPattern("/api/second");
setMethod(MethodType.POST);
}
@Override
public Class<SecondAPIResponse> getResponseClass() {
return SecondAPIResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model/v20200708/SecondAPIResponse.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.amp.model.v20200708;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.amp.transform.v20200708.SecondAPIResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class SecondAPIResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public SecondAPIResponse getInstance(UnmarshallerContext context) {
return SecondAPIResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model/v20200708/TestFeRequest.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.amp.model.v20200708;
import com.aliyuncs.RoaAcsRequest;
import com.aliyuncs.http.MethodType;
/**
* @author auto create
* @version
*/
public class TestFeRequest extends RoaAcsRequest<TestFeResponse> {
private String add1;
public TestFeRequest() {
super("amp", "2020-07-08", "TestFe", "jeepproduct001");
setUriPattern("/efe/333");
setMethod(MethodType.POST);
}
public String getAdd1() {
return this.add1;
}
public void setAdd1(String add1) {
this.add1 = add1;
if(add1 != null){
putQueryParameter("Add1", add1);
}
}
@Override
public Class<TestFeResponse> getResponseClass() {
return TestFeResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model/v20200708/TestFeResponse.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.amp.model.v20200708;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.amp.transform.v20200708.TestFeResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class TestFeResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public TestFeResponse getInstance(UnmarshallerContext context) {
return TestFeResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model/v20200708/TestParamRequest.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.amp.model.v20200708;
import com.aliyuncs.RoaAcsRequest;
import com.aliyuncs.http.MethodType;
/**
* @author auto create
* @version
*/
public class TestParamRequest extends RoaAcsRequest<TestParamResponse> {
private String param;
public TestParamRequest() {
super("amp", "2020-07-08", "TestParam", "jeepproduct001");
setUriPattern("/test/param");
setMethod(MethodType.POST);
}
public String getParam() {
return this.param;
}
public void setParam(String param) {
this.param = param;
if(param != null){
putQueryParameter("Param", param);
}
}
@Override
public Class<TestParamResponse> getResponseClass() {
return TestParamResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model/v20200708/TestParamResponse.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.amp.model.v20200708;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.amp.transform.v20200708.TestParamResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class TestParamResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public TestParamResponse getInstance(UnmarshallerContext context) {
return TestParamResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model/v20200708/TestRoaDueRequest.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.amp.model.v20200708;
import com.aliyuncs.RoaAcsRequest;
import com.aliyuncs.http.MethodType;
/**
* @author auto create
* @version
*/
public class TestRoaDueRequest extends RoaAcsRequest<TestRoaDueResponse> {
private Body body;
public TestRoaDueRequest() {
super("amp", "2020-07-08", "TestRoaDue", "jeepproduct001");
setUriPattern("/efe/efe");
setMethod(MethodType.POST);
}
public Body getBody() {
return this.body;
}
public void setBody(Body body) {
this.body = body;
if (body != null) {
putBodyParameter("body.Name" , body.getName());
}
}
public static class Body {
private String name;
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
}
@Override
public Class<TestRoaDueResponse> getResponseClass() {
return TestRoaDueResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model/v20200708/TestRoaDueResponse.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.amp.model.v20200708;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.amp.transform.v20200708.TestRoaDueResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class TestRoaDueResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public TestRoaDueResponse getInstance(UnmarshallerContext context) {
return TestRoaDueResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model/v20200708/TestRoaTcRequest.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.amp.model.v20200708;
import com.aliyuncs.RoaAcsRequest;
import com.aliyuncs.http.MethodType;
/**
* @author auto create
* @version
*/
public class TestRoaTcRequest extends RoaAcsRequest<TestRoaTcResponse> {
public TestRoaTcRequest() {
super("amp", "2020-07-08", "TestRoaTc", "jeepproduct001");
setUriPattern("/roa/tc");
setMethod(MethodType.POST);
}
@Override
public Class<TestRoaTcResponse> getResponseClass() {
return TestRoaTcResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model/v20200708/TestRoaTcResponse.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.amp.model.v20200708;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.amp.transform.v20200708.TestRoaTcResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class TestRoaTcResponse extends AcsResponse {
private String requestId;
private String result;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getResult() {
return this.result;
}
public void setResult(String result) {
this.result = result;
}
@Override
public TestRoaTcResponse getInstance(UnmarshallerContext context) {
return TestRoaTcResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model/v20200708/TestSeeRequest.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.amp.model.v20200708;
import com.aliyuncs.RoaAcsRequest;
import com.aliyuncs.http.MethodType;
/**
* @author auto create
* @version
*/
public class TestSeeRequest extends RoaAcsRequest<TestSeeResponse> {
public TestSeeRequest() {
super("amp", "2020-07-08", "TestSee", "jeepproduct001");
setUriPattern("/wo/eii//ee");
setMethod(MethodType.POST);
}
@Override
public Class<TestSeeResponse> getResponseClass() {
return TestSeeResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model/v20200708/TestSeeResponse.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.amp.model.v20200708;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.amp.transform.v20200708.TestSeeResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class TestSeeResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public TestSeeResponse getInstance(UnmarshallerContext context) {
return TestSeeResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model/v20200708/TestYsWoRequest.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.amp.model.v20200708;
import com.aliyuncs.RoaAcsRequest;
import com.google.gson.Gson;
import com.google.gson.annotations.SerializedName;
import com.aliyuncs.http.MethodType;
/**
* @author auto create
* @version
*/
public class TestYsWoRequest extends RoaAcsRequest<TestYsWoResponse> {
@SerializedName("body")
private Body body;
public TestYsWoRequest() {
super("amp", "2020-07-08", "TestYsWo", "jeepproduct001");
setUriPattern("/efe/www");
setMethod(MethodType.POST);
}
public Body getBody() {
return this.body;
}
public void setBody(Body body) {
this.body = body;
if (body != null) {
putBodyParameter("body" , new Gson().toJson(body));
}
}
public static class Body {
@SerializedName("Id")
private Long id;
public Long getId() {
return this.id;
}
public void setId(Long id) {
this.id = id;
}
}
@Override
public Class<TestYsWoResponse> getResponseClass() {
return TestYsWoResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/model/v20200708/TestYsWoResponse.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.amp.model.v20200708;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.amp.transform.v20200708.TestYsWoResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class TestYsWoResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public TestYsWoResponse getInstance(UnmarshallerContext context) {
return TestYsWoResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/transform
|
java-sources/com/aliyun/aliyun-java-sdk-amp/1.8.14/com/aliyuncs/amp/transform/v20200708/AAAResponseUnmarshaller.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.amp.transform.v20200708;
import com.aliyuncs.amp.model.v20200708.AAAResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class AAAResponseUnmarshaller {
public static AAAResponse unmarshall(AAAResponse aAAResponse, UnmarshallerContext _ctx) {
aAAResponse.setRequestId(_ctx.stringValue("AAAResponse.requestId"));
return aAAResponse;
}
}
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.