index
int64
repo_id
string
file_path
string
content
string
0
java-sources/com/aliyun/aliyun-java-sdk-avatar/2.0.8/com/aliyuncs/avatar/model
java-sources/com/aliyun/aliyun-java-sdk-avatar/2.0.8/com/aliyuncs/avatar/model/v20220130/SubmitTextTo3DAvatarVideoTaskResponse.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.avatar.model.v20220130; import com.aliyuncs.AcsResponse; import com.aliyuncs.avatar.transform.v20220130.SubmitTextTo3DAvatarVideoTaskResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class SubmitTextTo3DAvatarVideoTaskResponse 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 taskUuid; public String getTaskUuid() { return this.taskUuid; } public void setTaskUuid(String taskUuid) { this.taskUuid = taskUuid; } } @Override public SubmitTextTo3DAvatarVideoTaskResponse getInstance(UnmarshallerContext context) { return SubmitTextTo3DAvatarVideoTaskResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-avatar/2.0.8/com/aliyuncs/avatar/model
java-sources/com/aliyun/aliyun-java-sdk-avatar/2.0.8/com/aliyuncs/avatar/model/v20220130/Update2dAvatarRequest.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.avatar.model.v20220130; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class Update2dAvatarRequest extends RpcAcsRequest<Update2dAvatarResponse> { private String image; private Integer orientation; private String code; private String description; private String video; private String portrait; private Boolean transparent; private Long tenantId; private String name; private Boolean callback; public Update2dAvatarRequest() { super("avatar", "2022-01-30", "Update2dAvatar"); setMethod(MethodType.POST); } public String getImage() { return this.image; } public void setImage(String image) { this.image = image; if(image != null){ putQueryParameter("Image", image); } } public Integer getOrientation() { return this.orientation; } public void setOrientation(Integer orientation) { this.orientation = orientation; if(orientation != null){ putQueryParameter("Orientation", orientation.toString()); } } public String getCode() { return this.code; } public void setCode(String code) { this.code = code; if(code != null){ putQueryParameter("Code", code); } } public String getDescription() { return this.description; } public void setDescription(String description) { this.description = description; if(description != null){ putQueryParameter("Description", description); } } public String getVideo() { return this.video; } public void setVideo(String video) { this.video = video; if(video != null){ putQueryParameter("Video", video); } } public String getPortrait() { return this.portrait; } public void setPortrait(String portrait) { this.portrait = portrait; if(portrait != null){ putQueryParameter("Portrait", portrait); } } public Boolean getTransparent() { return this.transparent; } public void setTransparent(Boolean transparent) { this.transparent = transparent; if(transparent != null){ putQueryParameter("Transparent", transparent.toString()); } } public Long getTenantId() { return this.tenantId; } public void setTenantId(Long tenantId) { this.tenantId = tenantId; if(tenantId != null){ putQueryParameter("TenantId", tenantId.toString()); } } public String getName() { return this.name; } public void setName(String name) { this.name = name; if(name != null){ putQueryParameter("Name", name); } } public Boolean getCallback() { return this.callback; } public void setCallback(Boolean callback) { this.callback = callback; if(callback != null){ putQueryParameter("Callback", callback.toString()); } } @Override public Class<Update2dAvatarResponse> getResponseClass() { return Update2dAvatarResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-avatar/2.0.8/com/aliyuncs/avatar/model
java-sources/com/aliyun/aliyun-java-sdk-avatar/2.0.8/com/aliyuncs/avatar/model/v20220130/Update2dAvatarResponse.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.avatar.model.v20220130; import com.aliyuncs.AcsResponse; import com.aliyuncs.avatar.transform.v20220130.Update2dAvatarResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class Update2dAvatarResponse extends AcsResponse { private String requestId; private String code; private String message; private Boolean success; private Data data; 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 Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private String code; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } } @Override public Update2dAvatarResponse getInstance(UnmarshallerContext context) { return Update2dAvatarResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-avatar/2.0.8/com/aliyuncs/avatar/transform
java-sources/com/aliyun/aliyun-java-sdk-avatar/2.0.8/com/aliyuncs/avatar/transform/v20220130/CancelVideoTaskResponseUnmarshaller.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.avatar.transform.v20220130; import com.aliyuncs.avatar.model.v20220130.CancelVideoTaskResponse; import com.aliyuncs.avatar.model.v20220130.CancelVideoTaskResponse.Data; import com.aliyuncs.transform.UnmarshallerContext; public class CancelVideoTaskResponseUnmarshaller { public static CancelVideoTaskResponse unmarshall(CancelVideoTaskResponse cancelVideoTaskResponse, UnmarshallerContext _ctx) { cancelVideoTaskResponse.setRequestId(_ctx.stringValue("CancelVideoTaskResponse.RequestId")); cancelVideoTaskResponse.setCode(_ctx.stringValue("CancelVideoTaskResponse.Code")); cancelVideoTaskResponse.setMessage(_ctx.stringValue("CancelVideoTaskResponse.Message")); cancelVideoTaskResponse.setSuccess(_ctx.booleanValue("CancelVideoTaskResponse.Success")); Data data = new Data(); data.setTaskUuid(_ctx.stringValue("CancelVideoTaskResponse.Data.TaskUuid")); data.setIsCancel(_ctx.booleanValue("CancelVideoTaskResponse.Data.IsCancel")); data.setFailReason(_ctx.stringValue("CancelVideoTaskResponse.Data.FailReason")); cancelVideoTaskResponse.setData(data); return cancelVideoTaskResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-avatar/2.0.8/com/aliyuncs/avatar/transform
java-sources/com/aliyun/aliyun-java-sdk-avatar/2.0.8/com/aliyuncs/avatar/transform/v20220130/ClientAuthResponseUnmarshaller.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.avatar.transform.v20220130; import com.aliyuncs.avatar.model.v20220130.ClientAuthResponse; import com.aliyuncs.transform.UnmarshallerContext; public class ClientAuthResponseUnmarshaller { public static ClientAuthResponse unmarshall(ClientAuthResponse clientAuthResponse, UnmarshallerContext _ctx) { clientAuthResponse.setRequestId(_ctx.stringValue("ClientAuthResponse.RequestId")); clientAuthResponse.setSuccess(_ctx.booleanValue("ClientAuthResponse.Success")); clientAuthResponse.setCode(_ctx.stringValue("ClientAuthResponse.Code")); clientAuthResponse.setMessage(_ctx.stringValue("ClientAuthResponse.Message")); return clientAuthResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-avatar/2.0.8/com/aliyuncs/avatar/transform
java-sources/com/aliyun/aliyun-java-sdk-avatar/2.0.8/com/aliyuncs/avatar/transform/v20220130/ClientStartResponseUnmarshaller.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.avatar.transform.v20220130; import com.aliyuncs.avatar.model.v20220130.ClientStartResponse; import com.aliyuncs.avatar.model.v20220130.ClientStartResponse.Data; import com.aliyuncs.transform.UnmarshallerContext; public class ClientStartResponseUnmarshaller { public static ClientStartResponse unmarshall(ClientStartResponse clientStartResponse, UnmarshallerContext _ctx) { clientStartResponse.setRequestId(_ctx.stringValue("ClientStartResponse.RequestId")); clientStartResponse.setSuccess(_ctx.booleanValue("ClientStartResponse.Success")); clientStartResponse.setCode(_ctx.stringValue("ClientStartResponse.Code")); clientStartResponse.setMessage(_ctx.stringValue("ClientStartResponse.Message")); Data data = new Data(); data.setImToken(_ctx.stringValue("ClientStartResponse.Data.ImToken")); clientStartResponse.setData(data); return clientStartResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-avatar/2.0.8/com/aliyuncs/avatar/transform
java-sources/com/aliyun/aliyun-java-sdk-avatar/2.0.8/com/aliyuncs/avatar/transform/v20220130/ClientUnbindDeviceResponseUnmarshaller.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.avatar.transform.v20220130; import com.aliyuncs.avatar.model.v20220130.ClientUnbindDeviceResponse; import com.aliyuncs.transform.UnmarshallerContext; public class ClientUnbindDeviceResponseUnmarshaller { public static ClientUnbindDeviceResponse unmarshall(ClientUnbindDeviceResponse clientUnbindDeviceResponse, UnmarshallerContext _ctx) { clientUnbindDeviceResponse.setRequestId(_ctx.stringValue("ClientUnbindDeviceResponse.RequestId")); clientUnbindDeviceResponse.setSuccess(_ctx.booleanValue("ClientUnbindDeviceResponse.Success")); clientUnbindDeviceResponse.setCode(_ctx.stringValue("ClientUnbindDeviceResponse.Code")); clientUnbindDeviceResponse.setMessage(_ctx.stringValue("ClientUnbindDeviceResponse.Message")); return clientUnbindDeviceResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-avatar/2.0.8/com/aliyuncs/avatar/transform
java-sources/com/aliyun/aliyun-java-sdk-avatar/2.0.8/com/aliyuncs/avatar/transform/v20220130/CloseTimedResetOperateResponseUnmarshaller.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.avatar.transform.v20220130; import com.aliyuncs.avatar.model.v20220130.CloseTimedResetOperateResponse; import com.aliyuncs.avatar.model.v20220130.CloseTimedResetOperateResponse.Data; import com.aliyuncs.transform.UnmarshallerContext; public class CloseTimedResetOperateResponseUnmarshaller { public static CloseTimedResetOperateResponse unmarshall(CloseTimedResetOperateResponse closeTimedResetOperateResponse, UnmarshallerContext _ctx) { closeTimedResetOperateResponse.setRequestId(_ctx.stringValue("CloseTimedResetOperateResponse.RequestId")); closeTimedResetOperateResponse.setCode(_ctx.stringValue("CloseTimedResetOperateResponse.Code")); closeTimedResetOperateResponse.setMessage(_ctx.stringValue("CloseTimedResetOperateResponse.Message")); closeTimedResetOperateResponse.setSuccess(_ctx.booleanValue("CloseTimedResetOperateResponse.Success")); Data data = new Data(); data.setInstanceId(_ctx.stringValue("CloseTimedResetOperateResponse.Data.InstanceId")); data.setTenantId(_ctx.longValue("CloseTimedResetOperateResponse.Data.TenantId")); closeTimedResetOperateResponse.setData(data); return closeTimedResetOperateResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-avatar/2.0.8/com/aliyuncs/avatar/transform
java-sources/com/aliyun/aliyun-java-sdk-avatar/2.0.8/com/aliyuncs/avatar/transform/v20220130/ConfirmAvatar2dTrainResponseUnmarshaller.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.avatar.transform.v20220130; import com.aliyuncs.avatar.model.v20220130.ConfirmAvatar2dTrainResponse; import com.aliyuncs.transform.UnmarshallerContext; public class ConfirmAvatar2dTrainResponseUnmarshaller { public static ConfirmAvatar2dTrainResponse unmarshall(ConfirmAvatar2dTrainResponse confirmAvatar2dTrainResponse, UnmarshallerContext _ctx) { confirmAvatar2dTrainResponse.setRequestId(_ctx.stringValue("ConfirmAvatar2dTrainResponse.RequestId")); confirmAvatar2dTrainResponse.setCode(_ctx.stringValue("ConfirmAvatar2dTrainResponse.Code")); confirmAvatar2dTrainResponse.setMessage(_ctx.stringValue("ConfirmAvatar2dTrainResponse.Message")); confirmAvatar2dTrainResponse.setSuccess(_ctx.booleanValue("ConfirmAvatar2dTrainResponse.Success")); return confirmAvatar2dTrainResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-avatar/2.0.8/com/aliyuncs/avatar/transform
java-sources/com/aliyun/aliyun-java-sdk-avatar/2.0.8/com/aliyuncs/avatar/transform/v20220130/Create2dAvatarResponseUnmarshaller.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.avatar.transform.v20220130; import com.aliyuncs.avatar.model.v20220130.Create2dAvatarResponse; import com.aliyuncs.avatar.model.v20220130.Create2dAvatarResponse.Data; import com.aliyuncs.transform.UnmarshallerContext; public class Create2dAvatarResponseUnmarshaller { public static Create2dAvatarResponse unmarshall(Create2dAvatarResponse create2dAvatarResponse, UnmarshallerContext _ctx) { create2dAvatarResponse.setRequestId(_ctx.stringValue("Create2dAvatarResponse.RequestId")); create2dAvatarResponse.setCode(_ctx.stringValue("Create2dAvatarResponse.Code")); create2dAvatarResponse.setMessage(_ctx.stringValue("Create2dAvatarResponse.Message")); create2dAvatarResponse.setSuccess(_ctx.booleanValue("Create2dAvatarResponse.Success")); Data data = new Data(); data.setCode(_ctx.stringValue("Create2dAvatarResponse.Data.Code")); create2dAvatarResponse.setData(data); return create2dAvatarResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-avatar/2.0.8/com/aliyuncs/avatar/transform
java-sources/com/aliyun/aliyun-java-sdk-avatar/2.0.8/com/aliyuncs/avatar/transform/v20220130/DeleteAvatarResponseUnmarshaller.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.avatar.transform.v20220130; import com.aliyuncs.avatar.model.v20220130.DeleteAvatarResponse; import com.aliyuncs.transform.UnmarshallerContext; public class DeleteAvatarResponseUnmarshaller { public static DeleteAvatarResponse unmarshall(DeleteAvatarResponse deleteAvatarResponse, UnmarshallerContext _ctx) { deleteAvatarResponse.setRequestId(_ctx.stringValue("DeleteAvatarResponse.RequestId")); deleteAvatarResponse.setCode(_ctx.stringValue("DeleteAvatarResponse.Code")); deleteAvatarResponse.setMessage(_ctx.stringValue("DeleteAvatarResponse.Message")); deleteAvatarResponse.setSuccess(_ctx.booleanValue("DeleteAvatarResponse.Success")); return deleteAvatarResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-avatar/2.0.8/com/aliyuncs/avatar/transform
java-sources/com/aliyun/aliyun-java-sdk-avatar/2.0.8/com/aliyuncs/avatar/transform/v20220130/DuplexDecisionResponseUnmarshaller.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.avatar.transform.v20220130; import com.aliyuncs.avatar.model.v20220130.DuplexDecisionResponse; import com.aliyuncs.avatar.model.v20220130.DuplexDecisionResponse.Data; import com.aliyuncs.transform.UnmarshallerContext; public class DuplexDecisionResponseUnmarshaller { public static DuplexDecisionResponse unmarshall(DuplexDecisionResponse duplexDecisionResponse, UnmarshallerContext _ctx) { duplexDecisionResponse.setRequestId(_ctx.stringValue("DuplexDecisionResponse.RequestId")); duplexDecisionResponse.setCode(_ctx.stringValue("DuplexDecisionResponse.Code")); duplexDecisionResponse.setMessage(_ctx.stringValue("DuplexDecisionResponse.Message")); duplexDecisionResponse.setSuccess(_ctx.stringValue("DuplexDecisionResponse.Success")); Data data = new Data(); data.setActionType(_ctx.stringValue("DuplexDecisionResponse.Data.ActionType")); data.setOutputText(_ctx.stringValue("DuplexDecisionResponse.Data.OutputText")); data.setGrabType(_ctx.stringValue("DuplexDecisionResponse.Data.GrabType")); duplexDecisionResponse.setData(data); return duplexDecisionResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-avatar/2.0.8/com/aliyuncs/avatar/transform
java-sources/com/aliyun/aliyun-java-sdk-avatar/2.0.8/com/aliyuncs/avatar/transform/v20220130/GetVideoTaskInfoResponseUnmarshaller.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.avatar.transform.v20220130; import com.aliyuncs.avatar.model.v20220130.GetVideoTaskInfoResponse; import com.aliyuncs.avatar.model.v20220130.GetVideoTaskInfoResponse.Data; import com.aliyuncs.avatar.model.v20220130.GetVideoTaskInfoResponse.Data.TaskResult; import com.aliyuncs.transform.UnmarshallerContext; public class GetVideoTaskInfoResponseUnmarshaller { public static GetVideoTaskInfoResponse unmarshall(GetVideoTaskInfoResponse getVideoTaskInfoResponse, UnmarshallerContext _ctx) { getVideoTaskInfoResponse.setRequestId(_ctx.stringValue("GetVideoTaskInfoResponse.RequestId")); getVideoTaskInfoResponse.setCode(_ctx.stringValue("GetVideoTaskInfoResponse.Code")); getVideoTaskInfoResponse.setMessage(_ctx.stringValue("GetVideoTaskInfoResponse.Message")); getVideoTaskInfoResponse.setSuccess(_ctx.booleanValue("GetVideoTaskInfoResponse.Success")); Data data = new Data(); data.setTaskUuid(_ctx.stringValue("GetVideoTaskInfoResponse.Data.TaskUuid")); data.setType(_ctx.stringValue("GetVideoTaskInfoResponse.Data.Type")); data.setStatus(_ctx.stringValue("GetVideoTaskInfoResponse.Data.Status")); data.setProcess(_ctx.stringValue("GetVideoTaskInfoResponse.Data.Process")); TaskResult taskResult = new TaskResult(); taskResult.setVideoUrl(_ctx.stringValue("GetVideoTaskInfoResponse.Data.TaskResult.VideoUrl")); taskResult.setSubtitlesUrl(_ctx.stringValue("GetVideoTaskInfoResponse.Data.TaskResult.SubtitlesUrl")); taskResult.setWordSubtitlesUrl(_ctx.stringValue("GetVideoTaskInfoResponse.Data.TaskResult.WordSubtitlesUrl")); taskResult.setFailReason(_ctx.stringValue("GetVideoTaskInfoResponse.Data.TaskResult.FailReason")); taskResult.setFailCode(_ctx.stringValue("GetVideoTaskInfoResponse.Data.TaskResult.FailCode")); taskResult.setVideoDuration(_ctx.integerValue("GetVideoTaskInfoResponse.Data.TaskResult.VideoDuration")); taskResult.setAlphaUrl(_ctx.stringValue("GetVideoTaskInfoResponse.Data.TaskResult.AlphaUrl")); taskResult.setPreviewPic(_ctx.stringValue("GetVideoTaskInfoResponse.Data.TaskResult.PreviewPic")); taskResult.setAttachmentUrl(_ctx.stringValue("GetVideoTaskInfoResponse.Data.TaskResult.AttachmentUrl")); data.setTaskResult(taskResult); getVideoTaskInfoResponse.setData(data); return getVideoTaskInfoResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-avatar/2.0.8/com/aliyuncs/avatar/transform
java-sources/com/aliyun/aliyun-java-sdk-avatar/2.0.8/com/aliyuncs/avatar/transform/v20220130/LicenseAuthResponseUnmarshaller.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.avatar.transform.v20220130; import com.aliyuncs.avatar.model.v20220130.LicenseAuthResponse; import com.aliyuncs.avatar.model.v20220130.LicenseAuthResponse.Data; import com.aliyuncs.transform.UnmarshallerContext; public class LicenseAuthResponseUnmarshaller { public static LicenseAuthResponse unmarshall(LicenseAuthResponse licenseAuthResponse, UnmarshallerContext _ctx) { licenseAuthResponse.setRequestId(_ctx.stringValue("LicenseAuthResponse.RequestId")); licenseAuthResponse.setCode(_ctx.stringValue("LicenseAuthResponse.Code")); licenseAuthResponse.setMessage(_ctx.stringValue("LicenseAuthResponse.Message")); licenseAuthResponse.setSuccess(_ctx.booleanValue("LicenseAuthResponse.Success")); Data data = new Data(); data.setToken(_ctx.stringValue("LicenseAuthResponse.Data.Token")); licenseAuthResponse.setData(data); return licenseAuthResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-avatar/2.0.8/com/aliyuncs/avatar/transform
java-sources/com/aliyun/aliyun-java-sdk-avatar/2.0.8/com/aliyuncs/avatar/transform/v20220130/QueryAvatarListResponseUnmarshaller.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.avatar.transform.v20220130; import java.util.ArrayList; import java.util.List; import com.aliyuncs.avatar.model.v20220130.QueryAvatarListResponse; import com.aliyuncs.avatar.model.v20220130.QueryAvatarListResponse.Data; import com.aliyuncs.avatar.model.v20220130.QueryAvatarListResponse.Data.ListItem; import com.aliyuncs.avatar.model.v20220130.QueryAvatarListResponse.Data.ListItem.SupportedResolutions; import com.aliyuncs.avatar.model.v20220130.QueryAvatarListResponse.Data.ListItem.SupportedResolutions.OfflineItem; import com.aliyuncs.avatar.model.v20220130.QueryAvatarListResponse.Data.ListItem.SupportedResolutions.OnlineItem; import com.aliyuncs.transform.UnmarshallerContext; public class QueryAvatarListResponseUnmarshaller { public static QueryAvatarListResponse unmarshall(QueryAvatarListResponse queryAvatarListResponse, UnmarshallerContext _ctx) { queryAvatarListResponse.setRequestId(_ctx.stringValue("QueryAvatarListResponse.RequestId")); queryAvatarListResponse.setCode(_ctx.stringValue("QueryAvatarListResponse.Code")); queryAvatarListResponse.setMessage(_ctx.stringValue("QueryAvatarListResponse.Message")); queryAvatarListResponse.setSuccess(_ctx.booleanValue("QueryAvatarListResponse.Success")); Data data = new Data(); data.setTotalCount(_ctx.integerValue("QueryAvatarListResponse.Data.TotalCount")); data.setPageNo(_ctx.integerValue("QueryAvatarListResponse.Data.PageNo")); data.setPageSize(_ctx.integerValue("QueryAvatarListResponse.Data.PageSize")); data.setTotalPage(_ctx.integerValue("QueryAvatarListResponse.Data.TotalPage")); List<ListItem> list = new ArrayList<ListItem>(); for (int i = 0; i < _ctx.lengthValue("QueryAvatarListResponse.Data.List.Length"); i++) { ListItem listItem = new ListItem(); listItem.setCode(_ctx.stringValue("QueryAvatarListResponse.Data.List["+ i +"].Code")); listItem.setName(_ctx.stringValue("QueryAvatarListResponse.Data.List["+ i +"].Name")); listItem.setImage(_ctx.stringValue("QueryAvatarListResponse.Data.List["+ i +"].Image")); listItem.setPortrait(_ctx.stringValue("QueryAvatarListResponse.Data.List["+ i +"].Portrait")); listItem.setDescription(_ctx.stringValue("QueryAvatarListResponse.Data.List["+ i +"].Description")); listItem.setAvatarType(_ctx.stringValue("QueryAvatarListResponse.Data.List["+ i +"].AvatarType")); listItem.setModelType(_ctx.stringValue("QueryAvatarListResponse.Data.List["+ i +"].ModelType")); listItem.setMakeStatus(_ctx.stringValue("QueryAvatarListResponse.Data.List["+ i +"].MakeStatus")); listItem.setMakeFailReason(_ctx.stringValue("QueryAvatarListResponse.Data.List["+ i +"].MakeFailReason")); listItem.setMakeStage(_ctx.stringValue("QueryAvatarListResponse.Data.List["+ i +"].MakeStage")); listItem.setPreview(_ctx.stringValue("QueryAvatarListResponse.Data.List["+ i +"].Preview")); SupportedResolutions supportedResolutions = new SupportedResolutions(); List<OfflineItem> offline = new ArrayList<OfflineItem>(); for (int j = 0; j < _ctx.lengthValue("QueryAvatarListResponse.Data.List["+ i +"].SupportedResolutions.Offline.Length"); j++) { OfflineItem offlineItem = new OfflineItem(); offlineItem.setWidth(_ctx.integerValue("QueryAvatarListResponse.Data.List["+ i +"].SupportedResolutions.Offline["+ j +"].Width")); offlineItem.setHeight(_ctx.integerValue("QueryAvatarListResponse.Data.List["+ i +"].SupportedResolutions.Offline["+ j +"].Height")); offlineItem.setDesc(_ctx.stringValue("QueryAvatarListResponse.Data.List["+ i +"].SupportedResolutions.Offline["+ j +"].Desc")); offline.add(offlineItem); } supportedResolutions.setOffline(offline); List<OnlineItem> online = new ArrayList<OnlineItem>(); for (int j = 0; j < _ctx.lengthValue("QueryAvatarListResponse.Data.List["+ i +"].SupportedResolutions.Online.Length"); j++) { OnlineItem onlineItem = new OnlineItem(); onlineItem.setWidth(_ctx.integerValue("QueryAvatarListResponse.Data.List["+ i +"].SupportedResolutions.Online["+ j +"].Width")); onlineItem.setHeight(_ctx.integerValue("QueryAvatarListResponse.Data.List["+ i +"].SupportedResolutions.Online["+ j +"].Height")); onlineItem.setDesc(_ctx.stringValue("QueryAvatarListResponse.Data.List["+ i +"].SupportedResolutions.Online["+ j +"].Desc")); online.add(onlineItem); } supportedResolutions.setOnline(online); listItem.setSupportedResolutions(supportedResolutions); list.add(listItem); } data.setList(list); queryAvatarListResponse.setData(data); return queryAvatarListResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-avatar/2.0.8/com/aliyuncs/avatar/transform
java-sources/com/aliyun/aliyun-java-sdk-avatar/2.0.8/com/aliyuncs/avatar/transform/v20220130/QueryAvatarResponseUnmarshaller.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.avatar.transform.v20220130; import java.util.ArrayList; import java.util.List; import com.aliyuncs.avatar.model.v20220130.QueryAvatarResponse; import com.aliyuncs.avatar.model.v20220130.QueryAvatarResponse.Data; import com.aliyuncs.avatar.model.v20220130.QueryAvatarResponse.Data.SupportedResolutions; import com.aliyuncs.avatar.model.v20220130.QueryAvatarResponse.Data.SupportedResolutions.OfflineItem; import com.aliyuncs.avatar.model.v20220130.QueryAvatarResponse.Data.SupportedResolutions.OnlineItem; import java.util.Map; import com.aliyuncs.transform.UnmarshallerContext; public class QueryAvatarResponseUnmarshaller { public static QueryAvatarResponse unmarshall(QueryAvatarResponse queryAvatarResponse, UnmarshallerContext _ctx) { queryAvatarResponse.setRequestId(_ctx.stringValue("QueryAvatarResponse.RequestId")); queryAvatarResponse.setCode(_ctx.stringValue("QueryAvatarResponse.Code")); queryAvatarResponse.setMessage(_ctx.stringValue("QueryAvatarResponse.Message")); queryAvatarResponse.setSuccess(_ctx.booleanValue("QueryAvatarResponse.Success")); Data data = new Data(); data.setName(_ctx.stringValue("QueryAvatarResponse.Data.Name")); data.setDescription(_ctx.stringValue("QueryAvatarResponse.Data.Description")); data.setPortrait(_ctx.stringValue("QueryAvatarResponse.Data.Portrait")); data.setImage(_ctx.stringValue("QueryAvatarResponse.Data.Image")); data.setAllLocateImages(_ctx.mapValue("QueryAvatarResponse.Data.AllLocateImages")); data.setModelType(_ctx.stringValue("QueryAvatarResponse.Data.ModelType")); data.setAvatarType(_ctx.stringValue("QueryAvatarResponse.Data.AvatarType")); data.setMakeStatus(_ctx.stringValue("QueryAvatarResponse.Data.MakeStatus")); data.setMakeFailReason(_ctx.stringValue("QueryAvatarResponse.Data.MakeFailReason")); data.setMakeStage(_ctx.stringValue("QueryAvatarResponse.Data.MakeStage")); data.setPreview(_ctx.stringValue("QueryAvatarResponse.Data.Preview")); SupportedResolutions supportedResolutions = new SupportedResolutions(); List<OfflineItem> offline = new ArrayList<OfflineItem>(); for (int i = 0; i < _ctx.lengthValue("QueryAvatarResponse.Data.SupportedResolutions.Offline.Length"); i++) { OfflineItem offlineItem = new OfflineItem(); offlineItem.setWidth(_ctx.integerValue("QueryAvatarResponse.Data.SupportedResolutions.Offline["+ i +"].Width")); offlineItem.setHeight(_ctx.integerValue("QueryAvatarResponse.Data.SupportedResolutions.Offline["+ i +"].Height")); offlineItem.setDesc(_ctx.stringValue("QueryAvatarResponse.Data.SupportedResolutions.Offline["+ i +"].Desc")); offline.add(offlineItem); } supportedResolutions.setOffline(offline); List<OnlineItem> online = new ArrayList<OnlineItem>(); for (int i = 0; i < _ctx.lengthValue("QueryAvatarResponse.Data.SupportedResolutions.Online.Length"); i++) { OnlineItem onlineItem = new OnlineItem(); onlineItem.setWidth(_ctx.integerValue("QueryAvatarResponse.Data.SupportedResolutions.Online["+ i +"].Width")); onlineItem.setHeight(_ctx.integerValue("QueryAvatarResponse.Data.SupportedResolutions.Online["+ i +"].Height")); onlineItem.setDesc(_ctx.stringValue("QueryAvatarResponse.Data.SupportedResolutions.Online["+ i +"].Desc")); online.add(onlineItem); } supportedResolutions.setOnline(online); data.setSupportedResolutions(supportedResolutions); queryAvatarResponse.setData(data); return queryAvatarResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-avatar/2.0.8/com/aliyuncs/avatar/transform
java-sources/com/aliyun/aliyun-java-sdk-avatar/2.0.8/com/aliyuncs/avatar/transform/v20220130/QueryRunningInstanceResponseUnmarshaller.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.avatar.transform.v20220130; import java.util.ArrayList; import java.util.List; import com.aliyuncs.avatar.model.v20220130.QueryRunningInstanceResponse; import com.aliyuncs.avatar.model.v20220130.QueryRunningInstanceResponse.DataItem; import com.aliyuncs.avatar.model.v20220130.QueryRunningInstanceResponse.DataItem.Channel; import com.aliyuncs.avatar.model.v20220130.QueryRunningInstanceResponse.DataItem.User; import com.aliyuncs.transform.UnmarshallerContext; public class QueryRunningInstanceResponseUnmarshaller { public static QueryRunningInstanceResponse unmarshall(QueryRunningInstanceResponse queryRunningInstanceResponse, UnmarshallerContext _ctx) { queryRunningInstanceResponse.setRequestId(_ctx.stringValue("QueryRunningInstanceResponse.RequestId")); queryRunningInstanceResponse.setCode(_ctx.stringValue("QueryRunningInstanceResponse.Code")); queryRunningInstanceResponse.setMessage(_ctx.stringValue("QueryRunningInstanceResponse.Message")); queryRunningInstanceResponse.setSuccess(_ctx.booleanValue("QueryRunningInstanceResponse.Success")); List<DataItem> data = new ArrayList<DataItem>(); for (int i = 0; i < _ctx.lengthValue("QueryRunningInstanceResponse.Data.Length"); i++) { DataItem dataItem = new DataItem(); dataItem.setSessionId(_ctx.stringValue("QueryRunningInstanceResponse.Data["+ i +"].SessionId")); dataItem.setToken(_ctx.stringValue("QueryRunningInstanceResponse.Data["+ i +"].Token")); Channel channel = new Channel(); channel.setChannelId(_ctx.stringValue("QueryRunningInstanceResponse.Data["+ i +"].Channel.ChannelId")); channel.setToken(_ctx.stringValue("QueryRunningInstanceResponse.Data["+ i +"].Channel.Token")); channel.setType(_ctx.stringValue("QueryRunningInstanceResponse.Data["+ i +"].Channel.Type")); channel.setExpiredTime(_ctx.stringValue("QueryRunningInstanceResponse.Data["+ i +"].Channel.ExpiredTime")); channel.setNonce(_ctx.stringValue("QueryRunningInstanceResponse.Data["+ i +"].Channel.Nonce")); channel.setUserId(_ctx.stringValue("QueryRunningInstanceResponse.Data["+ i +"].Channel.UserId")); channel.setAppId(_ctx.stringValue("QueryRunningInstanceResponse.Data["+ i +"].Channel.AppId")); channel.setUserInfoInChannel(_ctx.stringValue("QueryRunningInstanceResponse.Data["+ i +"].Channel.UserInfoInChannel")); List<String> gslb = new ArrayList<String>(); for (int j = 0; j < _ctx.lengthValue("QueryRunningInstanceResponse.Data["+ i +"].Channel.Gslb.Length"); j++) { gslb.add(_ctx.stringValue("QueryRunningInstanceResponse.Data["+ i +"].Channel.Gslb["+ j +"]")); } channel.setGslb(gslb); dataItem.setChannel(channel); User user = new User(); user.setUserId(_ctx.stringValue("QueryRunningInstanceResponse.Data["+ i +"].User.UserId")); user.setUserName(_ctx.stringValue("QueryRunningInstanceResponse.Data["+ i +"].User.UserName")); dataItem.setUser(user); data.add(dataItem); } queryRunningInstanceResponse.setData(data); return queryRunningInstanceResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-avatar/2.0.8/com/aliyuncs/avatar/transform
java-sources/com/aliyun/aliyun-java-sdk-avatar/2.0.8/com/aliyuncs/avatar/transform/v20220130/QueryTimedResetOperateStatusResponseUnmarshaller.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.avatar.transform.v20220130; import com.aliyuncs.avatar.model.v20220130.QueryTimedResetOperateStatusResponse; import com.aliyuncs.avatar.model.v20220130.QueryTimedResetOperateStatusResponse.Data; import com.aliyuncs.transform.UnmarshallerContext; public class QueryTimedResetOperateStatusResponseUnmarshaller { public static QueryTimedResetOperateStatusResponse unmarshall(QueryTimedResetOperateStatusResponse queryTimedResetOperateStatusResponse, UnmarshallerContext _ctx) { queryTimedResetOperateStatusResponse.setRequestId(_ctx.stringValue("QueryTimedResetOperateStatusResponse.RequestId")); queryTimedResetOperateStatusResponse.setCode(_ctx.stringValue("QueryTimedResetOperateStatusResponse.Code")); queryTimedResetOperateStatusResponse.setMessage(_ctx.stringValue("QueryTimedResetOperateStatusResponse.Message")); queryTimedResetOperateStatusResponse.setSuccess(_ctx.booleanValue("QueryTimedResetOperateStatusResponse.Success")); Data data = new Data(); data.setInstanceId(_ctx.stringValue("QueryTimedResetOperateStatusResponse.Data.InstanceId")); data.setStatusStr(_ctx.stringValue("QueryTimedResetOperateStatusResponse.Data.StatusStr")); data.setTenantId(_ctx.stringValue("QueryTimedResetOperateStatusResponse.Data.TenantId")); data.setStatus(_ctx.longValue("QueryTimedResetOperateStatusResponse.Data.Status")); queryTimedResetOperateStatusResponse.setData(data); return queryTimedResetOperateStatusResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-avatar/2.0.8/com/aliyuncs/avatar/transform
java-sources/com/aliyun/aliyun-java-sdk-avatar/2.0.8/com/aliyuncs/avatar/transform/v20220130/QueryVideoTaskInfoResponseUnmarshaller.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.avatar.transform.v20220130; import java.util.ArrayList; import java.util.List; import com.aliyuncs.avatar.model.v20220130.QueryVideoTaskInfoResponse; import com.aliyuncs.avatar.model.v20220130.QueryVideoTaskInfoResponse.Data; import com.aliyuncs.avatar.model.v20220130.QueryVideoTaskInfoResponse.Data.ListItem; import com.aliyuncs.avatar.model.v20220130.QueryVideoTaskInfoResponse.Data.ListItem.TaskResult; import com.aliyuncs.transform.UnmarshallerContext; public class QueryVideoTaskInfoResponseUnmarshaller { public static QueryVideoTaskInfoResponse unmarshall(QueryVideoTaskInfoResponse queryVideoTaskInfoResponse, UnmarshallerContext _ctx) { queryVideoTaskInfoResponse.setRequestId(_ctx.stringValue("QueryVideoTaskInfoResponse.RequestId")); queryVideoTaskInfoResponse.setSuccess(_ctx.booleanValue("QueryVideoTaskInfoResponse.Success")); queryVideoTaskInfoResponse.setCode(_ctx.stringValue("QueryVideoTaskInfoResponse.Code")); queryVideoTaskInfoResponse.setMessage(_ctx.stringValue("QueryVideoTaskInfoResponse.Message")); Data data = new Data(); data.setPageNo(_ctx.integerValue("QueryVideoTaskInfoResponse.Data.PageNo")); data.setPageSize(_ctx.integerValue("QueryVideoTaskInfoResponse.Data.PageSize")); data.setTotalCount(_ctx.longValue("QueryVideoTaskInfoResponse.Data.TotalCount")); List<ListItem> list = new ArrayList<ListItem>(); for (int i = 0; i < _ctx.lengthValue("QueryVideoTaskInfoResponse.Data.List.Length"); i++) { ListItem listItem = new ListItem(); listItem.setTaskUuid(_ctx.stringValue("QueryVideoTaskInfoResponse.Data.List["+ i +"].TaskUuid")); listItem.setTitle(_ctx.stringValue("QueryVideoTaskInfoResponse.Data.List["+ i +"].Title")); listItem.setType(_ctx.integerValue("QueryVideoTaskInfoResponse.Data.List["+ i +"].Type")); listItem.setStatus(_ctx.integerValue("QueryVideoTaskInfoResponse.Data.List["+ i +"].Status")); TaskResult taskResult = new TaskResult(); taskResult.setVideoUrl(_ctx.stringValue("QueryVideoTaskInfoResponse.Data.List["+ i +"].TaskResult.VideoUrl")); taskResult.setSubtitlesUrl(_ctx.stringValue("QueryVideoTaskInfoResponse.Data.List["+ i +"].TaskResult.SubtitlesUrl")); taskResult.setWordSubtitlesUrl(_ctx.stringValue("QueryVideoTaskInfoResponse.Data.List["+ i +"].TaskResult.WordSubtitlesUrl")); taskResult.setVideoDuration(_ctx.integerValue("QueryVideoTaskInfoResponse.Data.List["+ i +"].TaskResult.VideoDuration")); taskResult.setFailReason(_ctx.stringValue("QueryVideoTaskInfoResponse.Data.List["+ i +"].TaskResult.FailReason")); taskResult.setFailCode(_ctx.stringValue("QueryVideoTaskInfoResponse.Data.List["+ i +"].TaskResult.FailCode")); taskResult.setAlphaUrl(_ctx.stringValue("QueryVideoTaskInfoResponse.Data.List["+ i +"].TaskResult.AlphaUrl")); taskResult.setPreviewPic(_ctx.stringValue("QueryVideoTaskInfoResponse.Data.List["+ i +"].TaskResult.PreviewPic")); taskResult.setAttachmentUrl(_ctx.stringValue("QueryVideoTaskInfoResponse.Data.List["+ i +"].TaskResult.AttachmentUrl")); listItem.setTaskResult(taskResult); list.add(listItem); } data.setList(list); queryVideoTaskInfoResponse.setData(data); return queryVideoTaskInfoResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-avatar/2.0.8/com/aliyuncs/avatar/transform
java-sources/com/aliyun/aliyun-java-sdk-avatar/2.0.8/com/aliyuncs/avatar/transform/v20220130/Render3dAvatarResponseUnmarshaller.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.avatar.transform.v20220130; import com.aliyuncs.avatar.model.v20220130.Render3dAvatarResponse; import com.aliyuncs.avatar.model.v20220130.Render3dAvatarResponse.Data; import com.aliyuncs.transform.UnmarshallerContext; public class Render3dAvatarResponseUnmarshaller { public static Render3dAvatarResponse unmarshall(Render3dAvatarResponse render3dAvatarResponse, UnmarshallerContext _ctx) { render3dAvatarResponse.setRequestId(_ctx.stringValue("Render3dAvatarResponse.RequestId")); render3dAvatarResponse.setSuccess(_ctx.booleanValue("Render3dAvatarResponse.Success")); render3dAvatarResponse.setCode(_ctx.stringValue("Render3dAvatarResponse.Code")); render3dAvatarResponse.setMessage(_ctx.stringValue("Render3dAvatarResponse.Message")); Data data = new Data(); data.setRenderData(_ctx.stringValue("Render3dAvatarResponse.Data.RenderData")); render3dAvatarResponse.setData(data); return render3dAvatarResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-avatar/2.0.8/com/aliyuncs/avatar/transform
java-sources/com/aliyun/aliyun-java-sdk-avatar/2.0.8/com/aliyuncs/avatar/transform/v20220130/SendCommandResponseUnmarshaller.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.avatar.transform.v20220130; import com.aliyuncs.avatar.model.v20220130.SendCommandResponse; import com.aliyuncs.avatar.model.v20220130.SendCommandResponse.Data; import com.aliyuncs.transform.UnmarshallerContext; public class SendCommandResponseUnmarshaller { public static SendCommandResponse unmarshall(SendCommandResponse sendCommandResponse, UnmarshallerContext _ctx) { sendCommandResponse.setRequestId(_ctx.stringValue("SendCommandResponse.RequestId")); sendCommandResponse.setCode(_ctx.stringValue("SendCommandResponse.Code")); sendCommandResponse.setMessage(_ctx.stringValue("SendCommandResponse.Message")); sendCommandResponse.setSuccess(_ctx.booleanValue("SendCommandResponse.Success")); Data data = new Data(); data.setSessionId(_ctx.stringValue("SendCommandResponse.Data.SessionId")); data.setUniqueCode(_ctx.stringValue("SendCommandResponse.Data.UniqueCode")); sendCommandResponse.setData(data); return sendCommandResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-avatar/2.0.8/com/aliyuncs/avatar/transform
java-sources/com/aliyun/aliyun-java-sdk-avatar/2.0.8/com/aliyuncs/avatar/transform/v20220130/SendMessageResponseUnmarshaller.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.avatar.transform.v20220130; import com.aliyuncs.avatar.model.v20220130.SendMessageResponse; import com.aliyuncs.avatar.model.v20220130.SendMessageResponse.Data; import com.aliyuncs.transform.UnmarshallerContext; public class SendMessageResponseUnmarshaller { public static SendMessageResponse unmarshall(SendMessageResponse sendMessageResponse, UnmarshallerContext _ctx) { sendMessageResponse.setCode(_ctx.stringValue("SendMessageResponse.Code")); sendMessageResponse.setMessage(_ctx.stringValue("SendMessageResponse.Message")); sendMessageResponse.setSuccess(_ctx.booleanValue("SendMessageResponse.Success")); Data data = new Data(); data.setRequestId(_ctx.stringValue("SendMessageResponse.Data.RequestId")); data.setSessionId(_ctx.stringValue("SendMessageResponse.Data.SessionId")); sendMessageResponse.setData(data); return sendMessageResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-avatar/2.0.8/com/aliyuncs/avatar/transform
java-sources/com/aliyun/aliyun-java-sdk-avatar/2.0.8/com/aliyuncs/avatar/transform/v20220130/SendTextResponseUnmarshaller.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.avatar.transform.v20220130; import com.aliyuncs.avatar.model.v20220130.SendTextResponse; import com.aliyuncs.avatar.model.v20220130.SendTextResponse.Data; import com.aliyuncs.transform.UnmarshallerContext; public class SendTextResponseUnmarshaller { public static SendTextResponse unmarshall(SendTextResponse sendTextResponse, UnmarshallerContext _ctx) { sendTextResponse.setRequestId(_ctx.stringValue("SendTextResponse.RequestId")); sendTextResponse.setCode(_ctx.stringValue("SendTextResponse.Code")); sendTextResponse.setMessage(_ctx.stringValue("SendTextResponse.Message")); sendTextResponse.setSuccess(_ctx.booleanValue("SendTextResponse.Success")); Data data = new Data(); data.setSessionId(_ctx.stringValue("SendTextResponse.Data.SessionId")); data.setUniqueCode(_ctx.stringValue("SendTextResponse.Data.UniqueCode")); sendTextResponse.setData(data); return sendTextResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-avatar/2.0.8/com/aliyuncs/avatar/transform
java-sources/com/aliyun/aliyun-java-sdk-avatar/2.0.8/com/aliyuncs/avatar/transform/v20220130/SendVamlResponseUnmarshaller.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.avatar.transform.v20220130; import com.aliyuncs.avatar.model.v20220130.SendVamlResponse; import com.aliyuncs.avatar.model.v20220130.SendVamlResponse.Data; import com.aliyuncs.transform.UnmarshallerContext; public class SendVamlResponseUnmarshaller { public static SendVamlResponse unmarshall(SendVamlResponse sendVamlResponse, UnmarshallerContext _ctx) { sendVamlResponse.setRequestId(_ctx.stringValue("SendVamlResponse.RequestId")); sendVamlResponse.setCode(_ctx.stringValue("SendVamlResponse.Code")); sendVamlResponse.setMessage(_ctx.stringValue("SendVamlResponse.Message")); sendVamlResponse.setSuccess(_ctx.booleanValue("SendVamlResponse.Success")); Data data = new Data(); data.setSessionId(_ctx.stringValue("SendVamlResponse.Data.SessionId")); data.setUniqueCode(_ctx.stringValue("SendVamlResponse.Data.UniqueCode")); sendVamlResponse.setData(data); return sendVamlResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-avatar/2.0.8/com/aliyuncs/avatar/transform
java-sources/com/aliyun/aliyun-java-sdk-avatar/2.0.8/com/aliyuncs/avatar/transform/v20220130/StartInstanceResponseUnmarshaller.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.avatar.transform.v20220130; import java.util.ArrayList; import java.util.List; import com.aliyuncs.avatar.model.v20220130.StartInstanceResponse; import com.aliyuncs.avatar.model.v20220130.StartInstanceResponse.Data; import com.aliyuncs.avatar.model.v20220130.StartInstanceResponse.Data.Channel; import com.aliyuncs.transform.UnmarshallerContext; public class StartInstanceResponseUnmarshaller { public static StartInstanceResponse unmarshall(StartInstanceResponse startInstanceResponse, UnmarshallerContext _ctx) { startInstanceResponse.setCode(_ctx.stringValue("StartInstanceResponse.Code")); startInstanceResponse.setMessage(_ctx.stringValue("StartInstanceResponse.Message")); startInstanceResponse.setSuccess(_ctx.booleanValue("StartInstanceResponse.Success")); Data data = new Data(); data.setRequestId(_ctx.stringValue("StartInstanceResponse.Data.RequestId")); data.setSessionId(_ctx.stringValue("StartInstanceResponse.Data.SessionId")); data.setToken(_ctx.stringValue("StartInstanceResponse.Data.Token")); Channel channel = new Channel(); channel.setChannelId(_ctx.stringValue("StartInstanceResponse.Data.Channel.ChannelId")); channel.setToken(_ctx.stringValue("StartInstanceResponse.Data.Channel.Token")); channel.setType(_ctx.stringValue("StartInstanceResponse.Data.Channel.Type")); channel.setExpiredTime(_ctx.stringValue("StartInstanceResponse.Data.Channel.ExpiredTime")); channel.setNonce(_ctx.stringValue("StartInstanceResponse.Data.Channel.Nonce")); channel.setUserId(_ctx.stringValue("StartInstanceResponse.Data.Channel.UserId")); channel.setAppId(_ctx.stringValue("StartInstanceResponse.Data.Channel.AppId")); channel.setUserInfoInChannel(_ctx.stringValue("StartInstanceResponse.Data.Channel.UserInfoInChannel")); List<String> gslb = new ArrayList<String>(); for (int i = 0; i < _ctx.lengthValue("StartInstanceResponse.Data.Channel.Gslb.Length"); i++) { gslb.add(_ctx.stringValue("StartInstanceResponse.Data.Channel.Gslb["+ i +"]")); } channel.setGslb(gslb); data.setChannel(channel); startInstanceResponse.setData(data); return startInstanceResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-avatar/2.0.8/com/aliyuncs/avatar/transform
java-sources/com/aliyun/aliyun-java-sdk-avatar/2.0.8/com/aliyuncs/avatar/transform/v20220130/StartTimedResetOperateResponseUnmarshaller.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.avatar.transform.v20220130; import com.aliyuncs.avatar.model.v20220130.StartTimedResetOperateResponse; import com.aliyuncs.avatar.model.v20220130.StartTimedResetOperateResponse.Data; import com.aliyuncs.transform.UnmarshallerContext; public class StartTimedResetOperateResponseUnmarshaller { public static StartTimedResetOperateResponse unmarshall(StartTimedResetOperateResponse startTimedResetOperateResponse, UnmarshallerContext _ctx) { startTimedResetOperateResponse.setRequestId(_ctx.stringValue("StartTimedResetOperateResponse.RequestId")); startTimedResetOperateResponse.setCode(_ctx.stringValue("StartTimedResetOperateResponse.Code")); startTimedResetOperateResponse.setMessage(_ctx.stringValue("StartTimedResetOperateResponse.Message")); startTimedResetOperateResponse.setSuccess(_ctx.booleanValue("StartTimedResetOperateResponse.Success")); Data data = new Data(); data.setInstanceId(_ctx.stringValue("StartTimedResetOperateResponse.Data.InstanceId")); data.setTenantId(_ctx.longValue("StartTimedResetOperateResponse.Data.TenantId")); startTimedResetOperateResponse.setData(data); return startTimedResetOperateResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-avatar/2.0.8/com/aliyuncs/avatar/transform
java-sources/com/aliyun/aliyun-java-sdk-avatar/2.0.8/com/aliyuncs/avatar/transform/v20220130/StopInstanceResponseUnmarshaller.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.avatar.transform.v20220130; import com.aliyuncs.avatar.model.v20220130.StopInstanceResponse; import com.aliyuncs.avatar.model.v20220130.StopInstanceResponse.Data; import com.aliyuncs.transform.UnmarshallerContext; public class StopInstanceResponseUnmarshaller { public static StopInstanceResponse unmarshall(StopInstanceResponse stopInstanceResponse, UnmarshallerContext _ctx) { stopInstanceResponse.setCode(_ctx.stringValue("StopInstanceResponse.Code")); stopInstanceResponse.setMessage(_ctx.stringValue("StopInstanceResponse.Message")); stopInstanceResponse.setSuccess(_ctx.booleanValue("StopInstanceResponse.Success")); Data data = new Data(); data.setRequestId(_ctx.stringValue("StopInstanceResponse.Data.RequestId")); data.setSessionId(_ctx.stringValue("StopInstanceResponse.Data.SessionId")); stopInstanceResponse.setData(data); return stopInstanceResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-avatar/2.0.8/com/aliyuncs/avatar/transform
java-sources/com/aliyun/aliyun-java-sdk-avatar/2.0.8/com/aliyuncs/avatar/transform/v20220130/SubmitAudioTo2DAvatarVideoTaskResponseUnmarshaller.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.avatar.transform.v20220130; import com.aliyuncs.avatar.model.v20220130.SubmitAudioTo2DAvatarVideoTaskResponse; import com.aliyuncs.avatar.model.v20220130.SubmitAudioTo2DAvatarVideoTaskResponse.Data; import com.aliyuncs.transform.UnmarshallerContext; public class SubmitAudioTo2DAvatarVideoTaskResponseUnmarshaller { public static SubmitAudioTo2DAvatarVideoTaskResponse unmarshall(SubmitAudioTo2DAvatarVideoTaskResponse submitAudioTo2DAvatarVideoTaskResponse, UnmarshallerContext _ctx) { submitAudioTo2DAvatarVideoTaskResponse.setRequestId(_ctx.stringValue("SubmitAudioTo2DAvatarVideoTaskResponse.RequestId")); submitAudioTo2DAvatarVideoTaskResponse.setCode(_ctx.stringValue("SubmitAudioTo2DAvatarVideoTaskResponse.Code")); submitAudioTo2DAvatarVideoTaskResponse.setMessage(_ctx.stringValue("SubmitAudioTo2DAvatarVideoTaskResponse.Message")); submitAudioTo2DAvatarVideoTaskResponse.setSuccess(_ctx.booleanValue("SubmitAudioTo2DAvatarVideoTaskResponse.Success")); Data data = new Data(); data.setTaskUuid(_ctx.stringValue("SubmitAudioTo2DAvatarVideoTaskResponse.Data.TaskUuid")); submitAudioTo2DAvatarVideoTaskResponse.setData(data); return submitAudioTo2DAvatarVideoTaskResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-avatar/2.0.8/com/aliyuncs/avatar/transform
java-sources/com/aliyun/aliyun-java-sdk-avatar/2.0.8/com/aliyuncs/avatar/transform/v20220130/SubmitAudioTo3DAvatarVideoTaskResponseUnmarshaller.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.avatar.transform.v20220130; import com.aliyuncs.avatar.model.v20220130.SubmitAudioTo3DAvatarVideoTaskResponse; import com.aliyuncs.avatar.model.v20220130.SubmitAudioTo3DAvatarVideoTaskResponse.Data; import com.aliyuncs.transform.UnmarshallerContext; public class SubmitAudioTo3DAvatarVideoTaskResponseUnmarshaller { public static SubmitAudioTo3DAvatarVideoTaskResponse unmarshall(SubmitAudioTo3DAvatarVideoTaskResponse submitAudioTo3DAvatarVideoTaskResponse, UnmarshallerContext _ctx) { submitAudioTo3DAvatarVideoTaskResponse.setRequestId(_ctx.stringValue("SubmitAudioTo3DAvatarVideoTaskResponse.RequestId")); submitAudioTo3DAvatarVideoTaskResponse.setSuccess(_ctx.booleanValue("SubmitAudioTo3DAvatarVideoTaskResponse.Success")); submitAudioTo3DAvatarVideoTaskResponse.setCode(_ctx.stringValue("SubmitAudioTo3DAvatarVideoTaskResponse.Code")); submitAudioTo3DAvatarVideoTaskResponse.setMessage(_ctx.stringValue("SubmitAudioTo3DAvatarVideoTaskResponse.Message")); Data data = new Data(); data.setTaskUuid(_ctx.stringValue("SubmitAudioTo3DAvatarVideoTaskResponse.Data.TaskUuid")); submitAudioTo3DAvatarVideoTaskResponse.setData(data); return submitAudioTo3DAvatarVideoTaskResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-avatar/2.0.8/com/aliyuncs/avatar/transform
java-sources/com/aliyun/aliyun-java-sdk-avatar/2.0.8/com/aliyuncs/avatar/transform/v20220130/SubmitAvatarVideoTaskResponseUnmarshaller.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.avatar.transform.v20220130; import com.aliyuncs.avatar.model.v20220130.SubmitAvatarVideoTaskResponse; import com.aliyuncs.avatar.model.v20220130.SubmitAvatarVideoTaskResponse.Data; import com.aliyuncs.transform.UnmarshallerContext; public class SubmitAvatarVideoTaskResponseUnmarshaller { public static SubmitAvatarVideoTaskResponse unmarshall(SubmitAvatarVideoTaskResponse submitAvatarVideoTaskResponse, UnmarshallerContext _ctx) { submitAvatarVideoTaskResponse.setRequestId(_ctx.stringValue("SubmitAvatarVideoTaskResponse.RequestId")); submitAvatarVideoTaskResponse.setSuccess(_ctx.booleanValue("SubmitAvatarVideoTaskResponse.Success")); submitAvatarVideoTaskResponse.setCode(_ctx.stringValue("SubmitAvatarVideoTaskResponse.Code")); submitAvatarVideoTaskResponse.setMessage(_ctx.stringValue("SubmitAvatarVideoTaskResponse.Message")); Data data = new Data(); data.setTaskUuid(_ctx.stringValue("SubmitAvatarVideoTaskResponse.Data.TaskUuid")); submitAvatarVideoTaskResponse.setData(data); return submitAvatarVideoTaskResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-avatar/2.0.8/com/aliyuncs/avatar/transform
java-sources/com/aliyun/aliyun-java-sdk-avatar/2.0.8/com/aliyuncs/avatar/transform/v20220130/SubmitTextTo2DAvatarVideoTaskResponseUnmarshaller.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.avatar.transform.v20220130; import com.aliyuncs.avatar.model.v20220130.SubmitTextTo2DAvatarVideoTaskResponse; import com.aliyuncs.avatar.model.v20220130.SubmitTextTo2DAvatarVideoTaskResponse.Data; import com.aliyuncs.transform.UnmarshallerContext; public class SubmitTextTo2DAvatarVideoTaskResponseUnmarshaller { public static SubmitTextTo2DAvatarVideoTaskResponse unmarshall(SubmitTextTo2DAvatarVideoTaskResponse submitTextTo2DAvatarVideoTaskResponse, UnmarshallerContext _ctx) { submitTextTo2DAvatarVideoTaskResponse.setRequestId(_ctx.stringValue("SubmitTextTo2DAvatarVideoTaskResponse.RequestId")); submitTextTo2DAvatarVideoTaskResponse.setSuccess(_ctx.booleanValue("SubmitTextTo2DAvatarVideoTaskResponse.Success")); submitTextTo2DAvatarVideoTaskResponse.setCode(_ctx.stringValue("SubmitTextTo2DAvatarVideoTaskResponse.Code")); submitTextTo2DAvatarVideoTaskResponse.setMessage(_ctx.stringValue("SubmitTextTo2DAvatarVideoTaskResponse.Message")); Data data = new Data(); data.setTaskUuid(_ctx.stringValue("SubmitTextTo2DAvatarVideoTaskResponse.Data.TaskUuid")); submitTextTo2DAvatarVideoTaskResponse.setData(data); return submitTextTo2DAvatarVideoTaskResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-avatar/2.0.8/com/aliyuncs/avatar/transform
java-sources/com/aliyun/aliyun-java-sdk-avatar/2.0.8/com/aliyuncs/avatar/transform/v20220130/SubmitTextTo3DAvatarVideoTaskResponseUnmarshaller.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.avatar.transform.v20220130; import com.aliyuncs.avatar.model.v20220130.SubmitTextTo3DAvatarVideoTaskResponse; import com.aliyuncs.avatar.model.v20220130.SubmitTextTo3DAvatarVideoTaskResponse.Data; import com.aliyuncs.transform.UnmarshallerContext; public class SubmitTextTo3DAvatarVideoTaskResponseUnmarshaller { public static SubmitTextTo3DAvatarVideoTaskResponse unmarshall(SubmitTextTo3DAvatarVideoTaskResponse submitTextTo3DAvatarVideoTaskResponse, UnmarshallerContext _ctx) { submitTextTo3DAvatarVideoTaskResponse.setRequestId(_ctx.stringValue("SubmitTextTo3DAvatarVideoTaskResponse.RequestId")); submitTextTo3DAvatarVideoTaskResponse.setSuccess(_ctx.booleanValue("SubmitTextTo3DAvatarVideoTaskResponse.Success")); submitTextTo3DAvatarVideoTaskResponse.setCode(_ctx.stringValue("SubmitTextTo3DAvatarVideoTaskResponse.Code")); submitTextTo3DAvatarVideoTaskResponse.setMessage(_ctx.stringValue("SubmitTextTo3DAvatarVideoTaskResponse.Message")); Data data = new Data(); data.setTaskUuid(_ctx.stringValue("SubmitTextTo3DAvatarVideoTaskResponse.Data.TaskUuid")); submitTextTo3DAvatarVideoTaskResponse.setData(data); return submitTextTo3DAvatarVideoTaskResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-avatar/2.0.8/com/aliyuncs/avatar/transform
java-sources/com/aliyun/aliyun-java-sdk-avatar/2.0.8/com/aliyuncs/avatar/transform/v20220130/Update2dAvatarResponseUnmarshaller.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.avatar.transform.v20220130; import com.aliyuncs.avatar.model.v20220130.Update2dAvatarResponse; import com.aliyuncs.avatar.model.v20220130.Update2dAvatarResponse.Data; import com.aliyuncs.transform.UnmarshallerContext; public class Update2dAvatarResponseUnmarshaller { public static Update2dAvatarResponse unmarshall(Update2dAvatarResponse update2dAvatarResponse, UnmarshallerContext _ctx) { update2dAvatarResponse.setRequestId(_ctx.stringValue("Update2dAvatarResponse.RequestId")); update2dAvatarResponse.setCode(_ctx.stringValue("Update2dAvatarResponse.Code")); update2dAvatarResponse.setMessage(_ctx.stringValue("Update2dAvatarResponse.Message")); update2dAvatarResponse.setSuccess(_ctx.booleanValue("Update2dAvatarResponse.Success")); Data data = new Data(); data.setCode(_ctx.stringValue("Update2dAvatarResponse.Data.Code")); update2dAvatarResponse.setData(data); return update2dAvatarResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/Endpoint.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.baas; import java.util.HashMap; public class Endpoint { public static HashMap<String, String> endpointMap = new HashMap<String, String>() { { put("cn-shenzhen", "baas.aliyuncs.com"); put("cn-beijing", "baas.aliyuncs.com"); put("ap-south-1", "baas.ap-southeast-1.aliyuncs.com"); put("eu-west-1", "baas.ap-southeast-1.aliyuncs.com"); put("ap-northeast-1", "baas.ap-southeast-1.aliyuncs.com"); put("cn-qingdao", "baas.aliyuncs.com"); put("cn-shanghai", "baas.aliyuncs.com"); put("cn-hongkong", "baas.ap-southeast-1.aliyuncs.com"); put("ap-southeast-2", "baas.ap-southeast-1.aliyuncs.com"); put("eu-central-1", "baas.ap-southeast-1.aliyuncs.com"); put("cn-huhehaote", "baas.aliyuncs.com"); put("us-east-1", "baas.ap-southeast-1.aliyuncs.com"); put("cn-zhangjiakou", "baas.aliyuncs.com"); put("us-west-1", "baas.ap-southeast-1.aliyuncs.com"); } }; public static String endpointRegionalType = "regional"; }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/AcceptFabricInvitationRequest.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.baas.model.v20181221; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.baas.Endpoint; /** * @author auto create * @version */ public class AcceptFabricInvitationRequest extends RpcAcsRequest<AcceptFabricInvitationResponse> { private String code; private Boolean isAccepted; public AcceptFabricInvitationRequest() { super("Baas", "2018-12-21", "AcceptFabricInvitation", "baas"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getCode() { return this.code; } public void setCode(String code) { this.code = code; if(code != null){ putBodyParameter("Code", code); } } public Boolean getIsAccepted() { return this.isAccepted; } public void setIsAccepted(Boolean isAccepted) { this.isAccepted = isAccepted; if(isAccepted != null){ putBodyParameter("IsAccepted", isAccepted.toString()); } } @Override public Class<AcceptFabricInvitationResponse> getResponseClass() { return AcceptFabricInvitationResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/AcceptFabricInvitationResponse.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.baas.model.v20181221; import com.aliyuncs.AcsResponse; import com.aliyuncs.baas.transform.v20181221.AcceptFabricInvitationResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class AcceptFabricInvitationResponse extends AcsResponse { private String requestId; private Boolean success; private Integer errorCode; 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 Integer getErrorCode() { return this.errorCode; } public void setErrorCode(Integer errorCode) { this.errorCode = errorCode; } @Override public AcceptFabricInvitationResponse getInstance(UnmarshallerContext context) { return AcceptFabricInvitationResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/ApplyAntChainCertificateRequest.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.baas.model.v20181221; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.baas.Endpoint; /** * @author auto create * @version */ public class ApplyAntChainCertificateRequest extends RpcAcsRequest<ApplyAntChainCertificateResponse> { private String uploadReq; private String antChainId; public ApplyAntChainCertificateRequest() { super("Baas", "2018-12-21", "ApplyAntChainCertificate", "baas"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getUploadReq() { return this.uploadReq; } public void setUploadReq(String uploadReq) { this.uploadReq = uploadReq; if(uploadReq != null){ putBodyParameter("UploadReq", uploadReq); } } public String getAntChainId() { return this.antChainId; } public void setAntChainId(String antChainId) { this.antChainId = antChainId; if(antChainId != null){ putBodyParameter("AntChainId", antChainId); } } @Override public Class<ApplyAntChainCertificateResponse> getResponseClass() { return ApplyAntChainCertificateResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/ApplyAntChainCertificateResponse.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.baas.model.v20181221; import com.aliyuncs.AcsResponse; import com.aliyuncs.baas.transform.v20181221.ApplyAntChainCertificateResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ApplyAntChainCertificateResponse extends AcsResponse { private String result; private String requestId; public String getResult() { return this.result; } public void setResult(String result) { this.result = result; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } @Override public ApplyAntChainCertificateResponse getInstance(UnmarshallerContext context) { return ApplyAntChainCertificateResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/ApplyAntChainCertificateWithKeyAutoCreationRequest.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.baas.model.v20181221; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.baas.Endpoint; /** * @author auto create * @version */ public class ApplyAntChainCertificateWithKeyAutoCreationRequest extends RpcAcsRequest<ApplyAntChainCertificateWithKeyAutoCreationResponse> { private String organizationUnitName; private String localityName; private String password; private String commonName; private String antChainId; private String countryName; private String stateOrProvinceName; private String organizationName; private String consortiumId; public ApplyAntChainCertificateWithKeyAutoCreationRequest() { super("Baas", "2018-12-21", "ApplyAntChainCertificateWithKeyAutoCreation", "baas"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getOrganizationUnitName() { return this.organizationUnitName; } public void setOrganizationUnitName(String organizationUnitName) { this.organizationUnitName = organizationUnitName; if(organizationUnitName != null){ putBodyParameter("OrganizationUnitName", organizationUnitName); } } public String getLocalityName() { return this.localityName; } public void setLocalityName(String localityName) { this.localityName = localityName; if(localityName != null){ putBodyParameter("LocalityName", localityName); } } public String getPassword() { return this.password; } public void setPassword(String password) { this.password = password; if(password != null){ putBodyParameter("Password", password); } } public String getCommonName() { return this.commonName; } public void setCommonName(String commonName) { this.commonName = commonName; if(commonName != null){ putBodyParameter("CommonName", commonName); } } public String getAntChainId() { return this.antChainId; } public void setAntChainId(String antChainId) { this.antChainId = antChainId; if(antChainId != null){ putBodyParameter("AntChainId", antChainId); } } public String getCountryName() { return this.countryName; } public void setCountryName(String countryName) { this.countryName = countryName; if(countryName != null){ putBodyParameter("CountryName", countryName); } } public String getStateOrProvinceName() { return this.stateOrProvinceName; } public void setStateOrProvinceName(String stateOrProvinceName) { this.stateOrProvinceName = stateOrProvinceName; if(stateOrProvinceName != null){ putBodyParameter("StateOrProvinceName", stateOrProvinceName); } } public String getOrganizationName() { return this.organizationName; } public void setOrganizationName(String organizationName) { this.organizationName = organizationName; if(organizationName != null){ putBodyParameter("OrganizationName", organizationName); } } public String getConsortiumId() { return this.consortiumId; } public void setConsortiumId(String consortiumId) { this.consortiumId = consortiumId; if(consortiumId != null){ putBodyParameter("ConsortiumId", consortiumId); } } @Override public Class<ApplyAntChainCertificateWithKeyAutoCreationResponse> getResponseClass() { return ApplyAntChainCertificateWithKeyAutoCreationResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/ApplyAntChainCertificateWithKeyAutoCreationResponse.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.baas.model.v20181221; import com.aliyuncs.AcsResponse; import com.aliyuncs.baas.transform.v20181221.ApplyAntChainCertificateWithKeyAutoCreationResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ApplyAntChainCertificateWithKeyAutoCreationResponse extends AcsResponse { private String requestId; private Result result; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Result getResult() { return this.result; } public void setResult(Result result) { this.result = result; } public static class Result { private String privateKey; private DownloadPath downloadPath; public String getPrivateKey() { return this.privateKey; } public void setPrivateKey(String privateKey) { this.privateKey = privateKey; } public DownloadPath getDownloadPath() { return this.downloadPath; } public void setDownloadPath(DownloadPath downloadPath) { this.downloadPath = downloadPath; } public static class DownloadPath { private String sdkUrl; private String clientCrtUrl; private String caCrtUrl; private String trustCaUrl; public String getSdkUrl() { return this.sdkUrl; } public void setSdkUrl(String sdkUrl) { this.sdkUrl = sdkUrl; } public String getClientCrtUrl() { return this.clientCrtUrl; } public void setClientCrtUrl(String clientCrtUrl) { this.clientCrtUrl = clientCrtUrl; } public String getCaCrtUrl() { return this.caCrtUrl; } public void setCaCrtUrl(String caCrtUrl) { this.caCrtUrl = caCrtUrl; } public String getTrustCaUrl() { return this.trustCaUrl; } public void setTrustCaUrl(String trustCaUrl) { this.trustCaUrl = trustCaUrl; } } } @Override public ApplyAntChainCertificateWithKeyAutoCreationResponse getInstance(UnmarshallerContext context) { return ApplyAntChainCertificateWithKeyAutoCreationResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/ApproveFabricChaincodeDefinitionRequest.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.baas.model.v20181221; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.baas.Endpoint; /** * @author auto create * @version */ public class ApproveFabricChaincodeDefinitionRequest extends RpcAcsRequest<ApproveFabricChaincodeDefinitionResponse> { private String chaincodePackageId; private String organizationId; private String chaincodeId; private String location; public ApproveFabricChaincodeDefinitionRequest() { super("Baas", "2018-12-21", "ApproveFabricChaincodeDefinition", "baas"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getChaincodePackageId() { return this.chaincodePackageId; } public void setChaincodePackageId(String chaincodePackageId) { this.chaincodePackageId = chaincodePackageId; if(chaincodePackageId != null){ putBodyParameter("ChaincodePackageId", chaincodePackageId); } } public String getOrganizationId() { return this.organizationId; } public void setOrganizationId(String organizationId) { this.organizationId = organizationId; if(organizationId != null){ putBodyParameter("OrganizationId", organizationId); } } public String getChaincodeId() { return this.chaincodeId; } public void setChaincodeId(String chaincodeId) { this.chaincodeId = chaincodeId; if(chaincodeId != null){ putBodyParameter("ChaincodeId", chaincodeId); } } public String getLocation() { return this.location; } public void setLocation(String location) { this.location = location; if(location != null){ putBodyParameter("Location", location); } } @Override public Class<ApproveFabricChaincodeDefinitionResponse> getResponseClass() { return ApproveFabricChaincodeDefinitionResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/ApproveFabricChaincodeDefinitionResponse.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.baas.model.v20181221; import com.aliyuncs.AcsResponse; import com.aliyuncs.baas.transform.v20181221.ApproveFabricChaincodeDefinitionResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ApproveFabricChaincodeDefinitionResponse extends AcsResponse { private String message; private String requestId; private Boolean success; private Integer errorCode; private Result result; public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } 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 Integer getErrorCode() { return this.errorCode; } public void setErrorCode(Integer errorCode) { this.errorCode = errorCode; } public Result getResult() { return this.result; } public void setResult(Result result) { this.result = result; } public static class Result { private String name; private String version; private String input; private Integer type; private String state; private String path; private String chaincodeId; private Boolean install; private String message; private String createTime; private String deployTime; private String channelName; private String endorsePolicy; private String consortiumId; private String providerId; private String providerName; private String channelId; private Boolean management; private String chaincodePackageId; private Boolean initRequired; private String chaincodeDefinitionId; public String getName() { return this.name; } public void setName(String name) { this.name = name; } public String getVersion() { return this.version; } public void setVersion(String version) { this.version = version; } public String getInput() { return this.input; } public void setInput(String input) { this.input = input; } public Integer getType() { return this.type; } public void setType(Integer type) { this.type = type; } public String getState() { return this.state; } public void setState(String state) { this.state = state; } public String getPath() { return this.path; } public void setPath(String path) { this.path = path; } public String getChaincodeId() { return this.chaincodeId; } public void setChaincodeId(String chaincodeId) { this.chaincodeId = chaincodeId; } public Boolean getInstall() { return this.install; } public void setInstall(Boolean install) { this.install = install; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getCreateTime() { return this.createTime; } public void setCreateTime(String createTime) { this.createTime = createTime; } public String getDeployTime() { return this.deployTime; } public void setDeployTime(String deployTime) { this.deployTime = deployTime; } public String getChannelName() { return this.channelName; } public void setChannelName(String channelName) { this.channelName = channelName; } public String getEndorsePolicy() { return this.endorsePolicy; } public void setEndorsePolicy(String endorsePolicy) { this.endorsePolicy = endorsePolicy; } public String getConsortiumId() { return this.consortiumId; } public void setConsortiumId(String consortiumId) { this.consortiumId = consortiumId; } public String getProviderId() { return this.providerId; } public void setProviderId(String providerId) { this.providerId = providerId; } public String getProviderName() { return this.providerName; } public void setProviderName(String providerName) { this.providerName = providerName; } public String getChannelId() { return this.channelId; } public void setChannelId(String channelId) { this.channelId = channelId; } public Boolean getManagement() { return this.management; } public void setManagement(Boolean management) { this.management = management; } public String getChaincodePackageId() { return this.chaincodePackageId; } public void setChaincodePackageId(String chaincodePackageId) { this.chaincodePackageId = chaincodePackageId; } public Boolean getInitRequired() { return this.initRequired; } public void setInitRequired(Boolean initRequired) { this.initRequired = initRequired; } public String getChaincodeDefinitionId() { return this.chaincodeDefinitionId; } public void setChaincodeDefinitionId(String chaincodeDefinitionId) { this.chaincodeDefinitionId = chaincodeDefinitionId; } } @Override public ApproveFabricChaincodeDefinitionResponse getInstance(UnmarshallerContext context) { return ApproveFabricChaincodeDefinitionResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/BatchAddAntChainMiniAppQRCodeAuthorizedUsersRequest.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.baas.model.v20181221; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.baas.Endpoint; /** * @author auto create * @version */ public class BatchAddAntChainMiniAppQRCodeAuthorizedUsersRequest extends RpcAcsRequest<BatchAddAntChainMiniAppQRCodeAuthorizedUsersResponse> { private String antChainId; private String phoneList; public BatchAddAntChainMiniAppQRCodeAuthorizedUsersRequest() { super("Baas", "2018-12-21", "BatchAddAntChainMiniAppQRCodeAuthorizedUsers", "baas"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getAntChainId() { return this.antChainId; } public void setAntChainId(String antChainId) { this.antChainId = antChainId; if(antChainId != null){ putBodyParameter("AntChainId", antChainId); } } public String getPhoneList() { return this.phoneList; } public void setPhoneList(String phoneList) { this.phoneList = phoneList; if(phoneList != null){ putBodyParameter("PhoneList", phoneList); } } @Override public Class<BatchAddAntChainMiniAppQRCodeAuthorizedUsersResponse> getResponseClass() { return BatchAddAntChainMiniAppQRCodeAuthorizedUsersResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/BatchAddAntChainMiniAppQRCodeAuthorizedUsersResponse.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.baas.model.v20181221; import com.aliyuncs.AcsResponse; import com.aliyuncs.baas.transform.v20181221.BatchAddAntChainMiniAppQRCodeAuthorizedUsersResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class BatchAddAntChainMiniAppQRCodeAuthorizedUsersResponse extends AcsResponse { private String result; private String requestId; public String getResult() { return this.result; } public void setResult(String result) { this.result = result; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } @Override public BatchAddAntChainMiniAppQRCodeAuthorizedUsersResponse getInstance(UnmarshallerContext context) { return BatchAddAntChainMiniAppQRCodeAuthorizedUsersResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/CheckFabricConsortiumDomainRequest.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.baas.model.v20181221; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.baas.Endpoint; /** * @author auto create * @version */ public class CheckFabricConsortiumDomainRequest extends RpcAcsRequest<CheckFabricConsortiumDomainResponse> { private String domainCode; public CheckFabricConsortiumDomainRequest() { super("Baas", "2018-12-21", "CheckFabricConsortiumDomain", "baas"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getDomainCode() { return this.domainCode; } public void setDomainCode(String domainCode) { this.domainCode = domainCode; if(domainCode != null){ putBodyParameter("DomainCode", domainCode); } } @Override public Class<CheckFabricConsortiumDomainResponse> getResponseClass() { return CheckFabricConsortiumDomainResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/CheckFabricConsortiumDomainResponse.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.baas.model.v20181221; import com.aliyuncs.AcsResponse; import com.aliyuncs.baas.transform.v20181221.CheckFabricConsortiumDomainResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class CheckFabricConsortiumDomainResponse extends AcsResponse { private String requestId; private Boolean success; private Integer errorCode; private Result result; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public Integer getErrorCode() { return this.errorCode; } public void setErrorCode(Integer errorCode) { this.errorCode = errorCode; } public Result getResult() { return this.result; } public void setResult(Result result) { this.result = result; } public static class Result { private String domain; private Boolean valid; private String prompt; public String getDomain() { return this.domain; } public void setDomain(String domain) { this.domain = domain; } public Boolean getValid() { return this.valid; } public void setValid(Boolean valid) { this.valid = valid; } public String getPrompt() { return this.prompt; } public void setPrompt(String prompt) { this.prompt = prompt; } } @Override public CheckFabricConsortiumDomainResponse getInstance(UnmarshallerContext context) { return CheckFabricConsortiumDomainResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/CheckFabricOrganizationDomainRequest.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.baas.model.v20181221; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.baas.Endpoint; /** * @author auto create * @version */ public class CheckFabricOrganizationDomainRequest extends RpcAcsRequest<CheckFabricOrganizationDomainResponse> { private String domainCode; private String domain; public CheckFabricOrganizationDomainRequest() { super("Baas", "2018-12-21", "CheckFabricOrganizationDomain", "baas"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getDomainCode() { return this.domainCode; } public void setDomainCode(String domainCode) { this.domainCode = domainCode; if(domainCode != null){ putBodyParameter("DomainCode", domainCode); } } public String getDomain() { return this.domain; } public void setDomain(String domain) { this.domain = domain; if(domain != null){ putBodyParameter("Domain", domain); } } @Override public Class<CheckFabricOrganizationDomainResponse> getResponseClass() { return CheckFabricOrganizationDomainResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/CheckFabricOrganizationDomainResponse.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.baas.model.v20181221; import com.aliyuncs.AcsResponse; import com.aliyuncs.baas.transform.v20181221.CheckFabricOrganizationDomainResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class CheckFabricOrganizationDomainResponse extends AcsResponse { private String requestId; private Boolean success; private Integer errorCode; private Result result; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public Integer getErrorCode() { return this.errorCode; } public void setErrorCode(Integer errorCode) { this.errorCode = errorCode; } public Result getResult() { return this.result; } public void setResult(Result result) { this.result = result; } public static class Result { private String domain; private Boolean valid; private String prompt; public String getDomain() { return this.domain; } public void setDomain(String domain) { this.domain = domain; } public Boolean getValid() { return this.valid; } public void setValid(Boolean valid) { this.valid = valid; } public String getPrompt() { return this.prompt; } public void setPrompt(String prompt) { this.prompt = prompt; } } @Override public CheckFabricOrganizationDomainResponse getInstance(UnmarshallerContext context) { return CheckFabricOrganizationDomainResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/ConfirmFabricConsortiumMemberRequest.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.baas.model.v20181221; import com.aliyuncs.RpcAcsRequest; import java.util.List; import com.aliyuncs.http.MethodType; import com.aliyuncs.baas.Endpoint; /** * @author auto create * @version */ public class ConfirmFabricConsortiumMemberRequest extends RpcAcsRequest<ConfirmFabricConsortiumMemberResponse> { private List<Organization> organizations; private String consortiumId; public ConfirmFabricConsortiumMemberRequest() { super("Baas", "2018-12-21", "ConfirmFabricConsortiumMember", "baas"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public List<Organization> getOrganizations() { return this.organizations; } public void setOrganizations(List<Organization> organizations) { this.organizations = organizations; if (organizations != null) { for (int depth1 = 0; depth1 < organizations.size(); depth1++) { putQueryParameter("Organization." + (depth1 + 1) + ".OrganizationId" , organizations.get(depth1).getOrganizationId()); } } } public String getConsortiumId() { return this.consortiumId; } public void setConsortiumId(String consortiumId) { this.consortiumId = consortiumId; if(consortiumId != null){ putQueryParameter("ConsortiumId", consortiumId); } } public static class Organization { private String organizationId; public String getOrganizationId() { return this.organizationId; } public void setOrganizationId(String organizationId) { this.organizationId = organizationId; } } @Override public Class<ConfirmFabricConsortiumMemberResponse> getResponseClass() { return ConfirmFabricConsortiumMemberResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/ConfirmFabricConsortiumMemberResponse.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.baas.model.v20181221; import com.aliyuncs.AcsResponse; import com.aliyuncs.baas.transform.v20181221.ConfirmFabricConsortiumMemberResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ConfirmFabricConsortiumMemberResponse extends AcsResponse { private String requestId; private Boolean result; private Boolean success; private Integer errorCode; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getResult() { return this.result; } public void setResult(Boolean result) { this.result = result; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public Integer getErrorCode() { return this.errorCode; } public void setErrorCode(Integer errorCode) { this.errorCode = errorCode; } @Override public ConfirmFabricConsortiumMemberResponse getInstance(UnmarshallerContext context) { return ConfirmFabricConsortiumMemberResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/CopyAntChainContractProjectRequest.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.baas.model.v20181221; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.baas.Endpoint; /** * @author auto create * @version */ public class CopyAntChainContractProjectRequest extends RpcAcsRequest<CopyAntChainContractProjectResponse> { private String projectVersion; private String projectId; private String projectName; private String projectDescription; public CopyAntChainContractProjectRequest() { super("Baas", "2018-12-21", "CopyAntChainContractProject", "baas"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getProjectVersion() { return this.projectVersion; } public void setProjectVersion(String projectVersion) { this.projectVersion = projectVersion; if(projectVersion != null){ putBodyParameter("ProjectVersion", projectVersion); } } public String getProjectId() { return this.projectId; } public void setProjectId(String projectId) { this.projectId = projectId; if(projectId != null){ putBodyParameter("ProjectId", projectId); } } public String getProjectName() { return this.projectName; } public void setProjectName(String projectName) { this.projectName = projectName; if(projectName != null){ putBodyParameter("ProjectName", projectName); } } public String getProjectDescription() { return this.projectDescription; } public void setProjectDescription(String projectDescription) { this.projectDescription = projectDescription; if(projectDescription != null){ putBodyParameter("ProjectDescription", projectDescription); } } @Override public Class<CopyAntChainContractProjectResponse> getResponseClass() { return CopyAntChainContractProjectResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/CopyAntChainContractProjectResponse.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.baas.model.v20181221; import com.aliyuncs.AcsResponse; import com.aliyuncs.baas.transform.v20181221.CopyAntChainContractProjectResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class CopyAntChainContractProjectResponse extends AcsResponse { private String requestId; private Result result; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Result getResult() { return this.result; } public void setResult(Result result) { this.result = result; } public static class Result { private Long updateTime; private String consortiumId; private Long createTime; private String projectId; private String projectName; private String projectVersion; private String projectDescription; public Long getUpdateTime() { return this.updateTime; } public void setUpdateTime(Long updateTime) { this.updateTime = updateTime; } public String getConsortiumId() { return this.consortiumId; } public void setConsortiumId(String consortiumId) { this.consortiumId = consortiumId; } public Long getCreateTime() { return this.createTime; } public void setCreateTime(Long createTime) { this.createTime = createTime; } public String getProjectId() { return this.projectId; } public void setProjectId(String projectId) { this.projectId = projectId; } public String getProjectName() { return this.projectName; } public void setProjectName(String projectName) { this.projectName = projectName; } public String getProjectVersion() { return this.projectVersion; } public void setProjectVersion(String projectVersion) { this.projectVersion = projectVersion; } public String getProjectDescription() { return this.projectDescription; } public void setProjectDescription(String projectDescription) { this.projectDescription = projectDescription; } } @Override public CopyAntChainContractProjectResponse getInstance(UnmarshallerContext context) { return CopyAntChainContractProjectResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/CreateAntChainAccountRequest.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.baas.model.v20181221; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.baas.Endpoint; /** * @author auto create * @version */ public class CreateAntChainAccountRequest extends RpcAcsRequest<CreateAntChainAccountResponse> { private String accountRecoverPubKey; private String accountPubKey; private String antChainId; private String account; public CreateAntChainAccountRequest() { super("Baas", "2018-12-21", "CreateAntChainAccount", "baas"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getAccountRecoverPubKey() { return this.accountRecoverPubKey; } public void setAccountRecoverPubKey(String accountRecoverPubKey) { this.accountRecoverPubKey = accountRecoverPubKey; if(accountRecoverPubKey != null){ putBodyParameter("AccountRecoverPubKey", accountRecoverPubKey); } } public String getAccountPubKey() { return this.accountPubKey; } public void setAccountPubKey(String accountPubKey) { this.accountPubKey = accountPubKey; if(accountPubKey != null){ putBodyParameter("AccountPubKey", accountPubKey); } } public String getAntChainId() { return this.antChainId; } public void setAntChainId(String antChainId) { this.antChainId = antChainId; if(antChainId != null){ putBodyParameter("AntChainId", antChainId); } } public String getAccount() { return this.account; } public void setAccount(String account) { this.account = account; if(account != null){ putBodyParameter("Account", account); } } @Override public Class<CreateAntChainAccountResponse> getResponseClass() { return CreateAntChainAccountResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/CreateAntChainAccountResponse.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.baas.model.v20181221; import com.aliyuncs.AcsResponse; import com.aliyuncs.baas.transform.v20181221.CreateAntChainAccountResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class CreateAntChainAccountResponse extends AcsResponse { private String requestId; private Result result; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Result getResult() { return this.result; } public void setResult(Result result) { this.result = result; } public static class Result { private String account; private String antChainId; public String getAccount() { return this.account; } public void setAccount(String account) { this.account = account; } public String getAntChainId() { return this.antChainId; } public void setAntChainId(String antChainId) { this.antChainId = antChainId; } } @Override public CreateAntChainAccountResponse getInstance(UnmarshallerContext context) { return CreateAntChainAccountResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/CreateAntChainAccountWithKeyPairAutoCreationRequest.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.baas.model.v20181221; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.baas.Endpoint; /** * @author auto create * @version */ public class CreateAntChainAccountWithKeyPairAutoCreationRequest extends RpcAcsRequest<CreateAntChainAccountWithKeyPairAutoCreationResponse> { private String password; private String antChainId; private String recoverPassword; private String account; public CreateAntChainAccountWithKeyPairAutoCreationRequest() { super("Baas", "2018-12-21", "CreateAntChainAccountWithKeyPairAutoCreation", "baas"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getPassword() { return this.password; } public void setPassword(String password) { this.password = password; if(password != null){ putBodyParameter("Password", password); } } public String getAntChainId() { return this.antChainId; } public void setAntChainId(String antChainId) { this.antChainId = antChainId; if(antChainId != null){ putBodyParameter("AntChainId", antChainId); } } public String getRecoverPassword() { return this.recoverPassword; } public void setRecoverPassword(String recoverPassword) { this.recoverPassword = recoverPassword; if(recoverPassword != null){ putBodyParameter("RecoverPassword", recoverPassword); } } public String getAccount() { return this.account; } public void setAccount(String account) { this.account = account; if(account != null){ putBodyParameter("Account", account); } } @Override public Class<CreateAntChainAccountWithKeyPairAutoCreationResponse> getResponseClass() { return CreateAntChainAccountWithKeyPairAutoCreationResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/CreateAntChainAccountWithKeyPairAutoCreationResponse.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.baas.model.v20181221; import com.aliyuncs.AcsResponse; import com.aliyuncs.baas.transform.v20181221.CreateAntChainAccountWithKeyPairAutoCreationResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class CreateAntChainAccountWithKeyPairAutoCreationResponse extends AcsResponse { private String requestId; private Result result; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Result getResult() { return this.result; } public void setResult(Result result) { this.result = result; } public static class Result { private String accountPublicKey; private String account; private String accountRecoverPrivateKey; private String accountRecoverPublicKey; private String accountPrivateKey; private String antChainId; public String getAccountPublicKey() { return this.accountPublicKey; } public void setAccountPublicKey(String accountPublicKey) { this.accountPublicKey = accountPublicKey; } public String getAccount() { return this.account; } public void setAccount(String account) { this.account = account; } public String getAccountRecoverPrivateKey() { return this.accountRecoverPrivateKey; } public void setAccountRecoverPrivateKey(String accountRecoverPrivateKey) { this.accountRecoverPrivateKey = accountRecoverPrivateKey; } public String getAccountRecoverPublicKey() { return this.accountRecoverPublicKey; } public void setAccountRecoverPublicKey(String accountRecoverPublicKey) { this.accountRecoverPublicKey = accountRecoverPublicKey; } public String getAccountPrivateKey() { return this.accountPrivateKey; } public void setAccountPrivateKey(String accountPrivateKey) { this.accountPrivateKey = accountPrivateKey; } public String getAntChainId() { return this.antChainId; } public void setAntChainId(String antChainId) { this.antChainId = antChainId; } } @Override public CreateAntChainAccountWithKeyPairAutoCreationResponse getInstance(UnmarshallerContext context) { return CreateAntChainAccountWithKeyPairAutoCreationResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/CreateAntChainConsortiumRequest.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.baas.model.v20181221; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.baas.Endpoint; /** * @author auto create * @version */ public class CreateAntChainConsortiumRequest extends RpcAcsRequest<CreateAntChainConsortiumResponse> { private String consortiumName; private String consortiumDescription; public CreateAntChainConsortiumRequest() { super("Baas", "2018-12-21", "CreateAntChainConsortium", "baas"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getConsortiumName() { return this.consortiumName; } public void setConsortiumName(String consortiumName) { this.consortiumName = consortiumName; if(consortiumName != null){ putBodyParameter("ConsortiumName", consortiumName); } } public String getConsortiumDescription() { return this.consortiumDescription; } public void setConsortiumDescription(String consortiumDescription) { this.consortiumDescription = consortiumDescription; if(consortiumDescription != null){ putBodyParameter("ConsortiumDescription", consortiumDescription); } } @Override public Class<CreateAntChainConsortiumResponse> getResponseClass() { return CreateAntChainConsortiumResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/CreateAntChainConsortiumResponse.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.baas.model.v20181221; import com.aliyuncs.AcsResponse; import com.aliyuncs.baas.transform.v20181221.CreateAntChainConsortiumResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class CreateAntChainConsortiumResponse extends AcsResponse { private String requestId; private Result result; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Result getResult() { return this.result; } public void setResult(Result result) { this.result = result; } public static class Result { private String consortiumId; public String getConsortiumId() { return this.consortiumId; } public void setConsortiumId(String consortiumId) { this.consortiumId = consortiumId; } } @Override public CreateAntChainConsortiumResponse getInstance(UnmarshallerContext context) { return CreateAntChainConsortiumResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/CreateAntChainContractContentRequest.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.baas.model.v20181221; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.baas.Endpoint; /** * @author auto create * @version */ public class CreateAntChainContractContentRequest extends RpcAcsRequest<CreateAntChainContractContentResponse> { private String content; private String parentContentId; private String projectId; private String contentName; private Boolean isDirectory; public CreateAntChainContractContentRequest() { super("Baas", "2018-12-21", "CreateAntChainContractContent", "baas"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getContent() { return this.content; } public void setContent(String content) { this.content = content; if(content != null){ putBodyParameter("Content", content); } } public String getParentContentId() { return this.parentContentId; } public void setParentContentId(String parentContentId) { this.parentContentId = parentContentId; if(parentContentId != null){ putBodyParameter("ParentContentId", parentContentId); } } public String getProjectId() { return this.projectId; } public void setProjectId(String projectId) { this.projectId = projectId; if(projectId != null){ putBodyParameter("ProjectId", projectId); } } public String getContentName() { return this.contentName; } public void setContentName(String contentName) { this.contentName = contentName; if(contentName != null){ putBodyParameter("ContentName", contentName); } } public Boolean getIsDirectory() { return this.isDirectory; } public void setIsDirectory(Boolean isDirectory) { this.isDirectory = isDirectory; if(isDirectory != null){ putBodyParameter("IsDirectory", isDirectory.toString()); } } @Override public Class<CreateAntChainContractContentResponse> getResponseClass() { return CreateAntChainContractContentResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/CreateAntChainContractContentResponse.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.baas.model.v20181221; import com.aliyuncs.AcsResponse; import com.aliyuncs.baas.transform.v20181221.CreateAntChainContractContentResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class CreateAntChainContractContentResponse extends AcsResponse { private String requestId; private Result result; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Result getResult() { return this.result; } public void setResult(Result result) { this.result = result; } public static class Result { private String contentName; private String parentContentId; private String updateTime; private String createTime; private String projectId; private Boolean isDirectory; private String content; private String contentId; public String getContentName() { return this.contentName; } public void setContentName(String contentName) { this.contentName = contentName; } public String getParentContentId() { return this.parentContentId; } public void setParentContentId(String parentContentId) { this.parentContentId = parentContentId; } public String getUpdateTime() { return this.updateTime; } public void setUpdateTime(String updateTime) { this.updateTime = updateTime; } public String getCreateTime() { return this.createTime; } public void setCreateTime(String createTime) { this.createTime = createTime; } public String getProjectId() { return this.projectId; } public void setProjectId(String projectId) { this.projectId = projectId; } public Boolean getIsDirectory() { return this.isDirectory; } public void setIsDirectory(Boolean isDirectory) { this.isDirectory = isDirectory; } public String getContent() { return this.content; } public void setContent(String content) { this.content = content; } public String getContentId() { return this.contentId; } public void setContentId(String contentId) { this.contentId = contentId; } } @Override public CreateAntChainContractContentResponse getInstance(UnmarshallerContext context) { return CreateAntChainContractContentResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/CreateAntChainContractProjectRequest.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.baas.model.v20181221; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.baas.Endpoint; /** * @author auto create * @version */ public class CreateAntChainContractProjectRequest extends RpcAcsRequest<CreateAntChainContractProjectResponse> { private String projectVersion; private String projectName; private String projectDescription; private String consortiumId; public CreateAntChainContractProjectRequest() { super("Baas", "2018-12-21", "CreateAntChainContractProject", "baas"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getProjectVersion() { return this.projectVersion; } public void setProjectVersion(String projectVersion) { this.projectVersion = projectVersion; if(projectVersion != null){ putBodyParameter("ProjectVersion", projectVersion); } } public String getProjectName() { return this.projectName; } public void setProjectName(String projectName) { this.projectName = projectName; if(projectName != null){ putBodyParameter("ProjectName", projectName); } } public String getProjectDescription() { return this.projectDescription; } public void setProjectDescription(String projectDescription) { this.projectDescription = projectDescription; if(projectDescription != null){ putBodyParameter("ProjectDescription", projectDescription); } } public String getConsortiumId() { return this.consortiumId; } public void setConsortiumId(String consortiumId) { this.consortiumId = consortiumId; if(consortiumId != null){ putBodyParameter("ConsortiumId", consortiumId); } } @Override public Class<CreateAntChainContractProjectResponse> getResponseClass() { return CreateAntChainContractProjectResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/CreateAntChainContractProjectResponse.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.baas.model.v20181221; import com.aliyuncs.AcsResponse; import com.aliyuncs.baas.transform.v20181221.CreateAntChainContractProjectResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class CreateAntChainContractProjectResponse extends AcsResponse { private String requestId; private Result result; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Result getResult() { return this.result; } public void setResult(Result result) { this.result = result; } public static class Result { private Long updateTime; private String consortiumId; private Long createTime; private String projectId; private String projectName; private String projectVersion; private String projectDescription; public Long getUpdateTime() { return this.updateTime; } public void setUpdateTime(Long updateTime) { this.updateTime = updateTime; } public String getConsortiumId() { return this.consortiumId; } public void setConsortiumId(String consortiumId) { this.consortiumId = consortiumId; } public Long getCreateTime() { return this.createTime; } public void setCreateTime(Long createTime) { this.createTime = createTime; } public String getProjectId() { return this.projectId; } public void setProjectId(String projectId) { this.projectId = projectId; } public String getProjectName() { return this.projectName; } public void setProjectName(String projectName) { this.projectName = projectName; } public String getProjectVersion() { return this.projectVersion; } public void setProjectVersion(String projectVersion) { this.projectVersion = projectVersion; } public String getProjectDescription() { return this.projectDescription; } public void setProjectDescription(String projectDescription) { this.projectDescription = projectDescription; } } @Override public CreateAntChainContractProjectResponse getInstance(UnmarshallerContext context) { return CreateAntChainContractProjectResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/CreateAntChainKmsAccountNewRequest.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.baas.model.v20181221; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.baas.Endpoint; /** * @author auto create * @version */ public class CreateAntChainKmsAccountNewRequest extends RpcAcsRequest<CreateAntChainKmsAccountNewResponse> { private String antChainId; private String account; public CreateAntChainKmsAccountNewRequest() { super("Baas", "2018-12-21", "CreateAntChainKmsAccountNew", "baas"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getAntChainId() { return this.antChainId; } public void setAntChainId(String antChainId) { this.antChainId = antChainId; if(antChainId != null){ putBodyParameter("AntChainId", antChainId); } } public String getAccount() { return this.account; } public void setAccount(String account) { this.account = account; if(account != null){ putBodyParameter("Account", account); } } @Override public Class<CreateAntChainKmsAccountNewResponse> getResponseClass() { return CreateAntChainKmsAccountNewResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/CreateAntChainKmsAccountNewResponse.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.baas.model.v20181221; import com.aliyuncs.AcsResponse; import com.aliyuncs.baas.transform.v20181221.CreateAntChainKmsAccountNewResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class CreateAntChainKmsAccountNewResponse extends AcsResponse { private String httpStatusCode; private String requestId; private Boolean success; private String resultMessage; private String code; private String message; private String resultCode; private Result result; public String getHttpStatusCode() { return this.httpStatusCode; } public void setHttpStatusCode(String httpStatusCode) { this.httpStatusCode = httpStatusCode; } 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 getResultMessage() { return this.resultMessage; } public void setResultMessage(String resultMessage) { this.resultMessage = resultMessage; } 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 String getResultCode() { return this.resultCode; } public void setResultCode(String resultCode) { this.resultCode = resultCode; } public Result getResult() { return this.result; } public void setResult(Result result) { this.result = result; } public static class Result { private String pubKey; private String myKmsKeyId; public String getPubKey() { return this.pubKey; } public void setPubKey(String pubKey) { this.pubKey = pubKey; } public String getMyKmsKeyId() { return this.myKmsKeyId; } public void setMyKmsKeyId(String myKmsKeyId) { this.myKmsKeyId = myKmsKeyId; } } @Override public CreateAntChainKmsAccountNewResponse getInstance(UnmarshallerContext context) { return CreateAntChainKmsAccountNewResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/CreateFabricChaincodePackageRequest.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.baas.model.v20181221; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.baas.Endpoint; /** * @author auto create * @version */ public class CreateFabricChaincodePackageRequest extends RpcAcsRequest<CreateFabricChaincodePackageResponse> { private String organizationId; private String ossUrl; private String location; public CreateFabricChaincodePackageRequest() { super("Baas", "2018-12-21", "CreateFabricChaincodePackage", "baas"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getOrganizationId() { return this.organizationId; } public void setOrganizationId(String organizationId) { this.organizationId = organizationId; if(organizationId != null){ putBodyParameter("OrganizationId", organizationId); } } public String getOssUrl() { return this.ossUrl; } public void setOssUrl(String ossUrl) { this.ossUrl = ossUrl; if(ossUrl != null){ putBodyParameter("OssUrl", ossUrl); } } public String getLocation() { return this.location; } public void setLocation(String location) { this.location = location; if(location != null){ putBodyParameter("Location", location); } } @Override public Class<CreateFabricChaincodePackageResponse> getResponseClass() { return CreateFabricChaincodePackageResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/CreateFabricChaincodePackageResponse.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.baas.model.v20181221; import com.aliyuncs.AcsResponse; import com.aliyuncs.baas.transform.v20181221.CreateFabricChaincodePackageResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class CreateFabricChaincodePackageResponse extends AcsResponse { private String message; private String requestId; private Boolean success; private Integer errorCode; private Result result; public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } 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 Integer getErrorCode() { return this.errorCode; } public void setErrorCode(Integer errorCode) { this.errorCode = errorCode; } public Result getResult() { return this.result; } public void setResult(Result result) { this.result = result; } public static class Result { private String organizationId; private String label; private String checksum; private String chaincodePackageId; private String md5sum; private String providerUid; private String providerBid; private Integer type; private String typeName; private String uploadTime; private String installTime; private String state; private String ossURL; private String deleteTime; private Boolean deleted; private String message; public String getOrganizationId() { return this.organizationId; } public void setOrganizationId(String organizationId) { this.organizationId = organizationId; } public String getLabel() { return this.label; } public void setLabel(String label) { this.label = label; } public String getChecksum() { return this.checksum; } public void setChecksum(String checksum) { this.checksum = checksum; } public String getChaincodePackageId() { return this.chaincodePackageId; } public void setChaincodePackageId(String chaincodePackageId) { this.chaincodePackageId = chaincodePackageId; } public String getMd5sum() { return this.md5sum; } public void setMd5sum(String md5sum) { this.md5sum = md5sum; } public String getProviderUid() { return this.providerUid; } public void setProviderUid(String providerUid) { this.providerUid = providerUid; } public String getProviderBid() { return this.providerBid; } public void setProviderBid(String providerBid) { this.providerBid = providerBid; } public Integer getType() { return this.type; } public void setType(Integer type) { this.type = type; } public String getTypeName() { return this.typeName; } public void setTypeName(String typeName) { this.typeName = typeName; } public String getUploadTime() { return this.uploadTime; } public void setUploadTime(String uploadTime) { this.uploadTime = uploadTime; } public String getInstallTime() { return this.installTime; } public void setInstallTime(String installTime) { this.installTime = installTime; } public String getState() { return this.state; } public void setState(String state) { this.state = state; } public String getOssURL() { return this.ossURL; } public void setOssURL(String ossURL) { this.ossURL = ossURL; } public String getDeleteTime() { return this.deleteTime; } public void setDeleteTime(String deleteTime) { this.deleteTime = deleteTime; } public Boolean getDeleted() { return this.deleted; } public void setDeleted(Boolean deleted) { this.deleted = deleted; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } } @Override public CreateFabricChaincodePackageResponse getInstance(UnmarshallerContext context) { return CreateFabricChaincodePackageResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/CreateFabricChaincodeRequest.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.baas.model.v20181221; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.baas.Endpoint; /** * @author auto create * @version */ public class CreateFabricChaincodeRequest extends RpcAcsRequest<CreateFabricChaincodeResponse> { private String endorsePolicy; private String ossBucket; private String organizationId; private String ossUrl; private String location; private String channelId; private String consortiumId; public CreateFabricChaincodeRequest() { super("Baas", "2018-12-21", "CreateFabricChaincode", "baas"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getEndorsePolicy() { return this.endorsePolicy; } public void setEndorsePolicy(String endorsePolicy) { this.endorsePolicy = endorsePolicy; if(endorsePolicy != null){ putBodyParameter("EndorsePolicy", endorsePolicy); } } public String getOssBucket() { return this.ossBucket; } public void setOssBucket(String ossBucket) { this.ossBucket = ossBucket; if(ossBucket != null){ putBodyParameter("OssBucket", ossBucket); } } public String getOrganizationId() { return this.organizationId; } public void setOrganizationId(String organizationId) { this.organizationId = organizationId; if(organizationId != null){ putBodyParameter("OrganizationId", organizationId); } } public String getOssUrl() { return this.ossUrl; } public void setOssUrl(String ossUrl) { this.ossUrl = ossUrl; if(ossUrl != null){ putBodyParameter("OssUrl", ossUrl); } } public String getLocation() { return this.location; } public void setLocation(String location) { this.location = location; if(location != null){ putBodyParameter("Location", location); } } public String getChannelId() { return this.channelId; } public void setChannelId(String channelId) { this.channelId = channelId; if(channelId != null){ putBodyParameter("ChannelId", channelId); } } public String getConsortiumId() { return this.consortiumId; } public void setConsortiumId(String consortiumId) { this.consortiumId = consortiumId; if(consortiumId != null){ putBodyParameter("ConsortiumId", consortiumId); } } @Override public Class<CreateFabricChaincodeResponse> getResponseClass() { return CreateFabricChaincodeResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/CreateFabricChaincodeResponse.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.baas.model.v20181221; import com.aliyuncs.AcsResponse; import com.aliyuncs.baas.transform.v20181221.CreateFabricChaincodeResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class CreateFabricChaincodeResponse extends AcsResponse { private String requestId; private Boolean success; private Integer errorCode; private Result result; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public Integer getErrorCode() { return this.errorCode; } public void setErrorCode(Integer errorCode) { this.errorCode = errorCode; } public Result getResult() { return this.result; } public void setResult(Result result) { this.result = result; } public static class Result { private Integer type; private String endorsePolicy; private String state; private String createTime; private String chaincodeId; private String providerName; private String message; private String chaincodeName; private String input; private Boolean install; private String providerId; private String deployTime; private String chaincodeVersion; private String consortiumId; private String channelName; private String path; public Integer getType() { return this.type; } public void setType(Integer type) { this.type = type; } public String getEndorsePolicy() { return this.endorsePolicy; } public void setEndorsePolicy(String endorsePolicy) { this.endorsePolicy = endorsePolicy; } public String getState() { return this.state; } public void setState(String state) { this.state = state; } public String getCreateTime() { return this.createTime; } public void setCreateTime(String createTime) { this.createTime = createTime; } public String getChaincodeId() { return this.chaincodeId; } public void setChaincodeId(String chaincodeId) { this.chaincodeId = chaincodeId; } public String getProviderName() { return this.providerName; } public void setProviderName(String providerName) { this.providerName = providerName; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getChaincodeName() { return this.chaincodeName; } public void setChaincodeName(String chaincodeName) { this.chaincodeName = chaincodeName; } public String getInput() { return this.input; } public void setInput(String input) { this.input = input; } public Boolean getInstall() { return this.install; } public void setInstall(Boolean install) { this.install = install; } public String getProviderId() { return this.providerId; } public void setProviderId(String providerId) { this.providerId = providerId; } public String getDeployTime() { return this.deployTime; } public void setDeployTime(String deployTime) { this.deployTime = deployTime; } public String getChaincodeVersion() { return this.chaincodeVersion; } public void setChaincodeVersion(String chaincodeVersion) { this.chaincodeVersion = chaincodeVersion; } public String getConsortiumId() { return this.consortiumId; } public void setConsortiumId(String consortiumId) { this.consortiumId = consortiumId; } public String getChannelName() { return this.channelName; } public void setChannelName(String channelName) { this.channelName = channelName; } public String getPath() { return this.path; } public void setPath(String path) { this.path = path; } } @Override public CreateFabricChaincodeResponse getInstance(UnmarshallerContext context) { return CreateFabricChaincodeResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/CreateFabricChannelMemberRequest.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.baas.model.v20181221; import com.aliyuncs.RpcAcsRequest; import java.util.List; import com.aliyuncs.http.MethodType; import com.aliyuncs.baas.Endpoint; /** * @author auto create * @version */ public class CreateFabricChannelMemberRequest extends RpcAcsRequest<CreateFabricChannelMemberResponse> { private List<Organization> organizations; private String channelId; public CreateFabricChannelMemberRequest() { super("Baas", "2018-12-21", "CreateFabricChannelMember", "baas"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public List<Organization> getOrganizations() { return this.organizations; } public void setOrganizations(List<Organization> organizations) { this.organizations = organizations; if (organizations != null) { for (int depth1 = 0; depth1 < organizations.size(); depth1++) { putQueryParameter("Organization." + (depth1 + 1) + ".OrganizationId" , organizations.get(depth1).getOrganizationId()); } } } public String getChannelId() { return this.channelId; } public void setChannelId(String channelId) { this.channelId = channelId; if(channelId != null){ putQueryParameter("ChannelId", channelId); } } public static class Organization { private String organizationId; public String getOrganizationId() { return this.organizationId; } public void setOrganizationId(String organizationId) { this.organizationId = organizationId; } } @Override public Class<CreateFabricChannelMemberResponse> getResponseClass() { return CreateFabricChannelMemberResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/CreateFabricChannelMemberResponse.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.baas.model.v20181221; import com.aliyuncs.AcsResponse; import com.aliyuncs.baas.transform.v20181221.CreateFabricChannelMemberResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class CreateFabricChannelMemberResponse extends AcsResponse { private String requestId; private Boolean result; private Boolean success; private Integer errorCode; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getResult() { return this.result; } public void setResult(Boolean result) { this.result = result; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public Integer getErrorCode() { return this.errorCode; } public void setErrorCode(Integer errorCode) { this.errorCode = errorCode; } @Override public CreateFabricChannelMemberResponse getInstance(UnmarshallerContext context) { return CreateFabricChannelMemberResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/CreateFabricChannelRequest.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.baas.model.v20181221; import com.aliyuncs.RpcAcsRequest; import java.util.List; import com.aliyuncs.http.MethodType; import com.aliyuncs.baas.Endpoint; /** * @author auto create * @version */ public class CreateFabricChannelRequest extends RpcAcsRequest<CreateFabricChannelResponse> { private Integer preferredMaxBytes; private Integer maxMessageCount; private String channelName; private Integer batchTimeout; private List<Organization> organizations; private String consortiumId; public CreateFabricChannelRequest() { super("Baas", "2018-12-21", "CreateFabricChannel", "baas"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public Integer getPreferredMaxBytes() { return this.preferredMaxBytes; } public void setPreferredMaxBytes(Integer preferredMaxBytes) { this.preferredMaxBytes = preferredMaxBytes; if(preferredMaxBytes != null){ putBodyParameter("PreferredMaxBytes", preferredMaxBytes.toString()); } } public Integer getMaxMessageCount() { return this.maxMessageCount; } public void setMaxMessageCount(Integer maxMessageCount) { this.maxMessageCount = maxMessageCount; if(maxMessageCount != null){ putBodyParameter("MaxMessageCount", maxMessageCount.toString()); } } public String getChannelName() { return this.channelName; } public void setChannelName(String channelName) { this.channelName = channelName; if(channelName != null){ putQueryParameter("ChannelName", channelName); } } public Integer getBatchTimeout() { return this.batchTimeout; } public void setBatchTimeout(Integer batchTimeout) { this.batchTimeout = batchTimeout; if(batchTimeout != null){ putBodyParameter("BatchTimeout", batchTimeout.toString()); } } public List<Organization> getOrganizations() { return this.organizations; } public void setOrganizations(List<Organization> organizations) { this.organizations = organizations; if (organizations != null) { for (int depth1 = 0; depth1 < organizations.size(); depth1++) { putQueryParameter("Organization." + (depth1 + 1) + ".Id" , organizations.get(depth1).getId()); } } } public String getConsortiumId() { return this.consortiumId; } public void setConsortiumId(String consortiumId) { this.consortiumId = consortiumId; if(consortiumId != null){ putQueryParameter("ConsortiumId", consortiumId); } } public static class Organization { private String id; public String getId() { return this.id; } public void setId(String id) { this.id = id; } } @Override public Class<CreateFabricChannelResponse> getResponseClass() { return CreateFabricChannelResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/CreateFabricChannelResponse.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.baas.model.v20181221; import com.aliyuncs.AcsResponse; import com.aliyuncs.baas.transform.v20181221.CreateFabricChannelResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class CreateFabricChannelResponse extends AcsResponse { private String requestId; private Boolean success; private Integer errorCode; private Result result; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public Integer getErrorCode() { return this.errorCode; } public void setErrorCode(Integer errorCode) { this.errorCode = errorCode; } public Result getResult() { return this.result; } public void setResult(Result result) { this.result = result; } public static class Result { private Integer batchTimeout; private String updateTime; private Integer chaincodeCount; private Integer preferredMaxBytes; private String state; private String createTime; private String ownerName; private Long ownerUid; private String ownerBid; private Integer maxMessageCount; private Integer memberCount; private String requestId; private String consortiumId; private String channelName; private Boolean supportConfig; private String channelId; private String consortiumName; private Integer blockCount; public Integer getBatchTimeout() { return this.batchTimeout; } public void setBatchTimeout(Integer batchTimeout) { this.batchTimeout = batchTimeout; } public String getUpdateTime() { return this.updateTime; } public void setUpdateTime(String updateTime) { this.updateTime = updateTime; } public Integer getChaincodeCount() { return this.chaincodeCount; } public void setChaincodeCount(Integer chaincodeCount) { this.chaincodeCount = chaincodeCount; } public Integer getPreferredMaxBytes() { return this.preferredMaxBytes; } public void setPreferredMaxBytes(Integer preferredMaxBytes) { this.preferredMaxBytes = preferredMaxBytes; } public String getState() { return this.state; } public void setState(String state) { this.state = state; } public String getCreateTime() { return this.createTime; } public void setCreateTime(String createTime) { this.createTime = createTime; } public String getOwnerName() { return this.ownerName; } public void setOwnerName(String ownerName) { this.ownerName = ownerName; } public Long getOwnerUid() { return this.ownerUid; } public void setOwnerUid(Long ownerUid) { this.ownerUid = ownerUid; } public String getOwnerBid() { return this.ownerBid; } public void setOwnerBid(String ownerBid) { this.ownerBid = ownerBid; } public Integer getMaxMessageCount() { return this.maxMessageCount; } public void setMaxMessageCount(Integer maxMessageCount) { this.maxMessageCount = maxMessageCount; } public Integer getMemberCount() { return this.memberCount; } public void setMemberCount(Integer memberCount) { this.memberCount = memberCount; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getConsortiumId() { return this.consortiumId; } public void setConsortiumId(String consortiumId) { this.consortiumId = consortiumId; } public String getChannelName() { return this.channelName; } public void setChannelName(String channelName) { this.channelName = channelName; } public Boolean getSupportConfig() { return this.supportConfig; } public void setSupportConfig(Boolean supportConfig) { this.supportConfig = supportConfig; } public String getChannelId() { return this.channelId; } public void setChannelId(String channelId) { this.channelId = channelId; } public String getConsortiumName() { return this.consortiumName; } public void setConsortiumName(String consortiumName) { this.consortiumName = consortiumName; } public Integer getBlockCount() { return this.blockCount; } public void setBlockCount(Integer blockCount) { this.blockCount = blockCount; } } @Override public CreateFabricChannelResponse getInstance(UnmarshallerContext context) { return CreateFabricChannelResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/CreateFabricConsortiumMemberRequest.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.baas.model.v20181221; import com.aliyuncs.RpcAcsRequest; import java.util.List; import com.aliyuncs.http.MethodType; import com.aliyuncs.baas.Endpoint; /** * @author auto create * @version */ public class CreateFabricConsortiumMemberRequest extends RpcAcsRequest<CreateFabricConsortiumMemberResponse> { private String code; private List<Organization> organizations; private String consortiumId; public CreateFabricConsortiumMemberRequest() { super("Baas", "2018-12-21", "CreateFabricConsortiumMember", "baas"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getCode() { return this.code; } public void setCode(String code) { this.code = code; if(code != null){ putQueryParameter("Code", code); } } public List<Organization> getOrganizations() { return this.organizations; } public void setOrganizations(List<Organization> organizations) { this.organizations = organizations; if (organizations != null) { for (int depth1 = 0; depth1 < organizations.size(); depth1++) { putQueryParameter("Organization." + (depth1 + 1) + ".OrganizationId" , organizations.get(depth1).getOrganizationId()); } } } public String getConsortiumId() { return this.consortiumId; } public void setConsortiumId(String consortiumId) { this.consortiumId = consortiumId; if(consortiumId != null){ putQueryParameter("ConsortiumId", consortiumId); } } public static class Organization { private String organizationId; public String getOrganizationId() { return this.organizationId; } public void setOrganizationId(String organizationId) { this.organizationId = organizationId; } } @Override public Class<CreateFabricConsortiumMemberResponse> getResponseClass() { return CreateFabricConsortiumMemberResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/CreateFabricConsortiumMemberResponse.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.baas.model.v20181221; import com.aliyuncs.AcsResponse; import com.aliyuncs.baas.transform.v20181221.CreateFabricConsortiumMemberResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class CreateFabricConsortiumMemberResponse extends AcsResponse { private String requestId; private Boolean result; private Boolean success; private Integer errorCode; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getResult() { return this.result; } public void setResult(Boolean result) { this.result = result; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public Integer getErrorCode() { return this.errorCode; } public void setErrorCode(Integer errorCode) { this.errorCode = errorCode; } @Override public CreateFabricConsortiumMemberResponse getInstance(UnmarshallerContext context) { return CreateFabricConsortiumMemberResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/CreateFabricConsortiumRequest.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.baas.model.v20181221; import com.aliyuncs.RpcAcsRequest; import java.util.List; import com.aliyuncs.http.MethodType; import com.aliyuncs.baas.Endpoint; /** * @author auto create * @version */ public class CreateFabricConsortiumRequest extends RpcAcsRequest<CreateFabricConsortiumResponse> { private Integer orderersCount; private String consortiumName; private String specName; private String channelPolicy; private Integer paymentDuration; private String domain; private String consortiumDescription; private List<Organization> organizations; private String ordererType; private String zoneId; private String location; private String paymentDurationUnit; private Integer peersCount; public CreateFabricConsortiumRequest() { super("Baas", "2018-12-21", "CreateFabricConsortium", "baas"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public Integer getOrderersCount() { return this.orderersCount; } public void setOrderersCount(Integer orderersCount) { this.orderersCount = orderersCount; if(orderersCount != null){ putBodyParameter("OrderersCount", orderersCount.toString()); } } public String getConsortiumName() { return this.consortiumName; } public void setConsortiumName(String consortiumName) { this.consortiumName = consortiumName; if(consortiumName != null){ putBodyParameter("ConsortiumName", consortiumName); } } public String getSpecName() { return this.specName; } public void setSpecName(String specName) { this.specName = specName; if(specName != null){ putBodyParameter("SpecName", specName); } } public String getChannelPolicy() { return this.channelPolicy; } public void setChannelPolicy(String channelPolicy) { this.channelPolicy = channelPolicy; if(channelPolicy != null){ putBodyParameter("ChannelPolicy", channelPolicy); } } public Integer getPaymentDuration() { return this.paymentDuration; } public void setPaymentDuration(Integer paymentDuration) { this.paymentDuration = paymentDuration; if(paymentDuration != null){ putBodyParameter("PaymentDuration", paymentDuration.toString()); } } public String getDomain() { return this.domain; } public void setDomain(String domain) { this.domain = domain; if(domain != null){ putBodyParameter("Domain", domain); } } public String getConsortiumDescription() { return this.consortiumDescription; } public void setConsortiumDescription(String consortiumDescription) { this.consortiumDescription = consortiumDescription; if(consortiumDescription != null){ putBodyParameter("ConsortiumDescription", consortiumDescription); } } public List<Organization> getOrganizations() { return this.organizations; } public void setOrganizations(List<Organization> organizations) { this.organizations = organizations; if (organizations != null) { for (int depth1 = 0; depth1 < organizations.size(); depth1++) { putBodyParameter("Organization." + (depth1 + 1) + ".OrganizationId" , organizations.get(depth1).getOrganizationId()); } } } public String getOrdererType() { return this.ordererType; } public void setOrdererType(String ordererType) { this.ordererType = ordererType; if(ordererType != null){ putBodyParameter("OrdererType", ordererType); } } public String getZoneId() { return this.zoneId; } public void setZoneId(String zoneId) { this.zoneId = zoneId; if(zoneId != null){ putBodyParameter("ZoneId", zoneId); } } public String getLocation() { return this.location; } public void setLocation(String location) { this.location = location; if(location != null){ putBodyParameter("Location", location); } } public String getPaymentDurationUnit() { return this.paymentDurationUnit; } public void setPaymentDurationUnit(String paymentDurationUnit) { this.paymentDurationUnit = paymentDurationUnit; if(paymentDurationUnit != null){ putBodyParameter("PaymentDurationUnit", paymentDurationUnit); } } public Integer getPeersCount() { return this.peersCount; } public void setPeersCount(Integer peersCount) { this.peersCount = peersCount; if(peersCount != null){ putBodyParameter("PeersCount", peersCount.toString()); } } public static class Organization { private String organizationId; public String getOrganizationId() { return this.organizationId; } public void setOrganizationId(String organizationId) { this.organizationId = organizationId; } } @Override public Class<CreateFabricConsortiumResponse> getResponseClass() { return CreateFabricConsortiumResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/CreateFabricConsortiumResponse.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.baas.model.v20181221; import com.aliyuncs.AcsResponse; import com.aliyuncs.baas.transform.v20181221.CreateFabricConsortiumResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class CreateFabricConsortiumResponse extends AcsResponse { private String requestId; private Boolean success; private Integer errorCode; private Result result; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public Integer getErrorCode() { return this.errorCode; } public void setErrorCode(Integer errorCode) { this.errorCode = errorCode; } public Result getResult() { return this.result; } public void setResult(Result result) { this.result = result; } public static class Result { private Integer channelCount; private String domain; private String createTime; private String specName; private Integer ordererCount; private String serviceState; private String clusterState; private Long ownerUid; private String ownerBid; private String codeName; private String regionId; private Integer memberCount; private String channelPolicy; private String ordererType; private String description; private String consortiumId; private String zoneId; private String consortiumName; public Integer getChannelCount() { return this.channelCount; } public void setChannelCount(Integer channelCount) { this.channelCount = channelCount; } public String getDomain() { return this.domain; } public void setDomain(String domain) { this.domain = domain; } public String getCreateTime() { return this.createTime; } public void setCreateTime(String createTime) { this.createTime = createTime; } public String getSpecName() { return this.specName; } public void setSpecName(String specName) { this.specName = specName; } public Integer getOrdererCount() { return this.ordererCount; } public void setOrdererCount(Integer ordererCount) { this.ordererCount = ordererCount; } public String getServiceState() { return this.serviceState; } public void setServiceState(String serviceState) { this.serviceState = serviceState; } public String getClusterState() { return this.clusterState; } public void setClusterState(String clusterState) { this.clusterState = clusterState; } public Long getOwnerUid() { return this.ownerUid; } public void setOwnerUid(Long ownerUid) { this.ownerUid = ownerUid; } public String getOwnerBid() { return this.ownerBid; } public void setOwnerBid(String ownerBid) { this.ownerBid = ownerBid; } public String getCodeName() { return this.codeName; } public void setCodeName(String codeName) { this.codeName = codeName; } public String getRegionId() { return this.regionId; } public void setRegionId(String regionId) { this.regionId = regionId; } public Integer getMemberCount() { return this.memberCount; } public void setMemberCount(Integer memberCount) { this.memberCount = memberCount; } public String getChannelPolicy() { return this.channelPolicy; } public void setChannelPolicy(String channelPolicy) { this.channelPolicy = channelPolicy; } public String getOrdererType() { return this.ordererType; } public void setOrdererType(String ordererType) { this.ordererType = ordererType; } public String getDescription() { return this.description; } public void setDescription(String description) { this.description = description; } public String getConsortiumId() { return this.consortiumId; } public void setConsortiumId(String consortiumId) { this.consortiumId = consortiumId; } public String getZoneId() { return this.zoneId; } public void setZoneId(String zoneId) { this.zoneId = zoneId; } public String getConsortiumName() { return this.consortiumName; } public void setConsortiumName(String consortiumName) { this.consortiumName = consortiumName; } } @Override public CreateFabricConsortiumResponse getInstance(UnmarshallerContext context) { return CreateFabricConsortiumResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/CreateFabricOrganizationRequest.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.baas.model.v20181221; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.baas.Endpoint; /** * @author auto create * @version */ public class CreateFabricOrganizationRequest extends RpcAcsRequest<CreateFabricOrganizationResponse> { private String description; private String specName; private Integer paymentDuration; private String organizationName; private String domain; private String location; private String paymentDurationUnit; private Integer peersCount; public CreateFabricOrganizationRequest() { super("Baas", "2018-12-21", "CreateFabricOrganization", "baas"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getDescription() { return this.description; } public void setDescription(String description) { this.description = description; if(description != null){ putQueryParameter("Description", description); } } public String getSpecName() { return this.specName; } public void setSpecName(String specName) { this.specName = specName; if(specName != null){ putQueryParameter("SpecName", specName); } } public Integer getPaymentDuration() { return this.paymentDuration; } public void setPaymentDuration(Integer paymentDuration) { this.paymentDuration = paymentDuration; if(paymentDuration != null){ putBodyParameter("PaymentDuration", paymentDuration.toString()); } } public String getOrganizationName() { return this.organizationName; } public void setOrganizationName(String organizationName) { this.organizationName = organizationName; if(organizationName != null){ putQueryParameter("OrganizationName", organizationName); } } public String getDomain() { return this.domain; } public void setDomain(String domain) { this.domain = domain; if(domain != null){ putQueryParameter("Domain", domain); } } public String getLocation() { return this.location; } public void setLocation(String location) { this.location = location; if(location != null){ putQueryParameter("Location", location); } } public String getPaymentDurationUnit() { return this.paymentDurationUnit; } public void setPaymentDurationUnit(String paymentDurationUnit) { this.paymentDurationUnit = paymentDurationUnit; if(paymentDurationUnit != null){ putBodyParameter("PaymentDurationUnit", paymentDurationUnit); } } public Integer getPeersCount() { return this.peersCount; } public void setPeersCount(Integer peersCount) { this.peersCount = peersCount; if(peersCount != null){ putBodyParameter("PeersCount", peersCount.toString()); } } @Override public Class<CreateFabricOrganizationResponse> getResponseClass() { return CreateFabricOrganizationResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/CreateFabricOrganizationResponse.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.baas.model.v20181221; import com.aliyuncs.AcsResponse; import com.aliyuncs.baas.transform.v20181221.CreateFabricOrganizationResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class CreateFabricOrganizationResponse extends AcsResponse { private String requestId; private Boolean success; private Integer errorCode; private Result result; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public Integer getErrorCode() { return this.errorCode; } public void setErrorCode(Integer errorCode) { this.errorCode = errorCode; } public Result getResult() { return this.result; } public void setResult(Result result) { this.result = result; } public static class Result { private String domain; private Integer peerCount; private String createTime; private Integer consortiumCount; private String specName; private String serviceState; private String ownerName; private String clusterState; private Long ownerUid; private String ownerBid; private String codeName; private String organizationDescription; private String regionId; private String organizationId; private String requestId; private String zoneId; private Integer userCount; private String organizationName; public String getDomain() { return this.domain; } public void setDomain(String domain) { this.domain = domain; } public Integer getPeerCount() { return this.peerCount; } public void setPeerCount(Integer peerCount) { this.peerCount = peerCount; } public String getCreateTime() { return this.createTime; } public void setCreateTime(String createTime) { this.createTime = createTime; } public Integer getConsortiumCount() { return this.consortiumCount; } public void setConsortiumCount(Integer consortiumCount) { this.consortiumCount = consortiumCount; } public String getSpecName() { return this.specName; } public void setSpecName(String specName) { this.specName = specName; } public String getServiceState() { return this.serviceState; } public void setServiceState(String serviceState) { this.serviceState = serviceState; } public String getOwnerName() { return this.ownerName; } public void setOwnerName(String ownerName) { this.ownerName = ownerName; } public String getClusterState() { return this.clusterState; } public void setClusterState(String clusterState) { this.clusterState = clusterState; } public Long getOwnerUid() { return this.ownerUid; } public void setOwnerUid(Long ownerUid) { this.ownerUid = ownerUid; } public String getOwnerBid() { return this.ownerBid; } public void setOwnerBid(String ownerBid) { this.ownerBid = ownerBid; } public String getCodeName() { return this.codeName; } public void setCodeName(String codeName) { this.codeName = codeName; } public String getOrganizationDescription() { return this.organizationDescription; } public void setOrganizationDescription(String organizationDescription) { this.organizationDescription = organizationDescription; } public String getRegionId() { return this.regionId; } public void setRegionId(String regionId) { this.regionId = regionId; } public String getOrganizationId() { return this.organizationId; } public void setOrganizationId(String organizationId) { this.organizationId = organizationId; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getZoneId() { return this.zoneId; } public void setZoneId(String zoneId) { this.zoneId = zoneId; } public Integer getUserCount() { return this.userCount; } public void setUserCount(Integer userCount) { this.userCount = userCount; } public String getOrganizationName() { return this.organizationName; } public void setOrganizationName(String organizationName) { this.organizationName = organizationName; } } @Override public CreateFabricOrganizationResponse getInstance(UnmarshallerContext context) { return CreateFabricOrganizationResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/CreateFabricOrganizationUserRequest.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.baas.model.v20181221; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.baas.Endpoint; /** * @author auto create * @version */ public class CreateFabricOrganizationUserRequest extends RpcAcsRequest<CreateFabricOrganizationUserResponse> { private String password; private String attrs; private String organizationId; private String username; public CreateFabricOrganizationUserRequest() { super("Baas", "2018-12-21", "CreateFabricOrganizationUser", "baas"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getPassword() { return this.password; } public void setPassword(String password) { this.password = password; if(password != null){ putBodyParameter("Password", password); } } public String getAttrs() { return this.attrs; } public void setAttrs(String attrs) { this.attrs = attrs; if(attrs != null){ putBodyParameter("Attrs", attrs); } } public String getOrganizationId() { return this.organizationId; } public void setOrganizationId(String organizationId) { this.organizationId = organizationId; if(organizationId != null){ putBodyParameter("OrganizationId", organizationId); } } public String getUsername() { return this.username; } public void setUsername(String username) { this.username = username; if(username != null){ putBodyParameter("Username", username); } } @Override public Class<CreateFabricOrganizationUserResponse> getResponseClass() { return CreateFabricOrganizationUserResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/CreateFabricOrganizationUserResponse.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.baas.model.v20181221; import com.aliyuncs.AcsResponse; import com.aliyuncs.baas.transform.v20181221.CreateFabricOrganizationUserResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class CreateFabricOrganizationUserResponse extends AcsResponse { private String requestId; private Boolean success; private Integer errorCode; private Result result; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public Integer getErrorCode() { return this.errorCode; } public void setErrorCode(Integer errorCode) { this.errorCode = errorCode; } public Result getResult() { return this.result; } public void setResult(Result result) { this.result = result; } public static class Result { private String password; private String expireTime; private String createTime; private String organizationId; private String username; private String fullname; public String getPassword() { return this.password; } public void setPassword(String password) { this.password = password; } public String getExpireTime() { return this.expireTime; } public void setExpireTime(String expireTime) { this.expireTime = expireTime; } public String getCreateTime() { return this.createTime; } public void setCreateTime(String createTime) { this.createTime = createTime; } public String getOrganizationId() { return this.organizationId; } public void setOrganizationId(String organizationId) { this.organizationId = organizationId; } public String getUsername() { return this.username; } public void setUsername(String username) { this.username = username; } public String getFullname() { return this.fullname; } public void setFullname(String fullname) { this.fullname = fullname; } } @Override public CreateFabricOrganizationUserResponse getInstance(UnmarshallerContext context) { return CreateFabricOrganizationUserResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DeleteAntChainConsortiumRequest.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.baas.model.v20181221; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.baas.Endpoint; /** * @author auto create * @version */ public class DeleteAntChainConsortiumRequest extends RpcAcsRequest<DeleteAntChainConsortiumResponse> { private String consortiumId; public DeleteAntChainConsortiumRequest() { super("Baas", "2018-12-21", "DeleteAntChainConsortium", "baas"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getConsortiumId() { return this.consortiumId; } public void setConsortiumId(String consortiumId) { this.consortiumId = consortiumId; if(consortiumId != null){ putBodyParameter("ConsortiumId", consortiumId); } } @Override public Class<DeleteAntChainConsortiumResponse> getResponseClass() { return DeleteAntChainConsortiumResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DeleteAntChainConsortiumResponse.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.baas.model.v20181221; import com.aliyuncs.AcsResponse; import com.aliyuncs.baas.transform.v20181221.DeleteAntChainConsortiumResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DeleteAntChainConsortiumResponse extends AcsResponse { private String result; private String requestId; public String getResult() { return this.result; } public void setResult(String result) { this.result = result; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } @Override public DeleteAntChainConsortiumResponse getInstance(UnmarshallerContext context) { return DeleteAntChainConsortiumResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DeleteAntChainContractContentRequest.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.baas.model.v20181221; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.baas.Endpoint; /** * @author auto create * @version */ public class DeleteAntChainContractContentRequest extends RpcAcsRequest<DeleteAntChainContractContentResponse> { private String contentId; public DeleteAntChainContractContentRequest() { super("Baas", "2018-12-21", "DeleteAntChainContractContent", "baas"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getContentId() { return this.contentId; } public void setContentId(String contentId) { this.contentId = contentId; if(contentId != null){ putBodyParameter("ContentId", contentId); } } @Override public Class<DeleteAntChainContractContentResponse> getResponseClass() { return DeleteAntChainContractContentResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DeleteAntChainContractContentResponse.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.baas.model.v20181221; import com.aliyuncs.AcsResponse; import com.aliyuncs.baas.transform.v20181221.DeleteAntChainContractContentResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DeleteAntChainContractContentResponse extends AcsResponse { private String result; private String requestId; public String getResult() { return this.result; } public void setResult(String result) { this.result = result; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } @Override public DeleteAntChainContractContentResponse getInstance(UnmarshallerContext context) { return DeleteAntChainContractContentResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DeleteAntChainContractProjectRequest.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.baas.model.v20181221; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.baas.Endpoint; /** * @author auto create * @version */ public class DeleteAntChainContractProjectRequest extends RpcAcsRequest<DeleteAntChainContractProjectResponse> { private String projectId; public DeleteAntChainContractProjectRequest() { super("Baas", "2018-12-21", "DeleteAntChainContractProject", "baas"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getProjectId() { return this.projectId; } public void setProjectId(String projectId) { this.projectId = projectId; if(projectId != null){ putBodyParameter("ProjectId", projectId); } } @Override public Class<DeleteAntChainContractProjectResponse> getResponseClass() { return DeleteAntChainContractProjectResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DeleteAntChainContractProjectResponse.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.baas.model.v20181221; import com.aliyuncs.AcsResponse; import com.aliyuncs.baas.transform.v20181221.DeleteAntChainContractProjectResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DeleteAntChainContractProjectResponse extends AcsResponse { private String result; private String requestId; public String getResult() { return this.result; } public void setResult(String result) { this.result = result; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } @Override public DeleteAntChainContractProjectResponse getInstance(UnmarshallerContext context) { return DeleteAntChainContractProjectResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DeleteAntChainMiniAppQRCodeAuthorizedUserRequest.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.baas.model.v20181221; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.baas.Endpoint; /** * @author auto create * @version */ public class DeleteAntChainMiniAppQRCodeAuthorizedUserRequest extends RpcAcsRequest<DeleteAntChainMiniAppQRCodeAuthorizedUserResponse> { private String phone; private String antChainId; public DeleteAntChainMiniAppQRCodeAuthorizedUserRequest() { super("Baas", "2018-12-21", "DeleteAntChainMiniAppQRCodeAuthorizedUser", "baas"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getPhone() { return this.phone; } public void setPhone(String phone) { this.phone = phone; if(phone != null){ putBodyParameter("Phone", phone); } } public String getAntChainId() { return this.antChainId; } public void setAntChainId(String antChainId) { this.antChainId = antChainId; if(antChainId != null){ putBodyParameter("AntChainId", antChainId); } } @Override public Class<DeleteAntChainMiniAppQRCodeAuthorizedUserResponse> getResponseClass() { return DeleteAntChainMiniAppQRCodeAuthorizedUserResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DeleteAntChainMiniAppQRCodeAuthorizedUserResponse.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.baas.model.v20181221; import com.aliyuncs.AcsResponse; import com.aliyuncs.baas.transform.v20181221.DeleteAntChainMiniAppQRCodeAuthorizedUserResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DeleteAntChainMiniAppQRCodeAuthorizedUserResponse extends AcsResponse { private String result; private String requestId; public String getResult() { return this.result; } public void setResult(String result) { this.result = result; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } @Override public DeleteAntChainMiniAppQRCodeAuthorizedUserResponse getInstance(UnmarshallerContext context) { return DeleteAntChainMiniAppQRCodeAuthorizedUserResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DeleteFabricChaincodeRequest.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.baas.model.v20181221; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.baas.Endpoint; /** * @author auto create * @version */ public class DeleteFabricChaincodeRequest extends RpcAcsRequest<DeleteFabricChaincodeResponse> { private String chaincodeId; public DeleteFabricChaincodeRequest() { super("Baas", "2018-12-21", "DeleteFabricChaincode", "baas"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getChaincodeId() { return this.chaincodeId; } public void setChaincodeId(String chaincodeId) { this.chaincodeId = chaincodeId; if(chaincodeId != null){ putBodyParameter("ChaincodeId", chaincodeId); } } @Override public Class<DeleteFabricChaincodeResponse> getResponseClass() { return DeleteFabricChaincodeResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DeleteFabricChaincodeResponse.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.baas.model.v20181221; import com.aliyuncs.AcsResponse; import com.aliyuncs.baas.transform.v20181221.DeleteFabricChaincodeResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DeleteFabricChaincodeResponse extends AcsResponse { private String requestId; private Boolean success; private Integer errorCode; 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 Integer getErrorCode() { return this.errorCode; } public void setErrorCode(Integer errorCode) { this.errorCode = errorCode; } @Override public DeleteFabricChaincodeResponse getInstance(UnmarshallerContext context) { return DeleteFabricChaincodeResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DescribeAntChainAccountsRequest.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.baas.model.v20181221; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.baas.Endpoint; /** * @author auto create * @version */ public class DescribeAntChainAccountsRequest extends RpcAcsRequest<DescribeAntChainAccountsResponse> { private Integer pageNumber; private Integer pageSize; private String antChainId; public DescribeAntChainAccountsRequest() { super("Baas", "2018-12-21", "DescribeAntChainAccounts", "baas"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public Integer getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; if(pageNumber != null){ putBodyParameter("PageNumber", pageNumber.toString()); } } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; if(pageSize != null){ putBodyParameter("PageSize", pageSize.toString()); } } public String getAntChainId() { return this.antChainId; } public void setAntChainId(String antChainId) { this.antChainId = antChainId; if(antChainId != null){ putBodyParameter("AntChainId", antChainId); } } @Override public Class<DescribeAntChainAccountsResponse> getResponseClass() { return DescribeAntChainAccountsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DescribeAntChainAccountsResponse.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.baas.model.v20181221; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.baas.transform.v20181221.DescribeAntChainAccountsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeAntChainAccountsResponse extends AcsResponse { private String requestId; private Result result; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Result getResult() { return this.result; } public void setResult(Result result) { this.result = result; } public static class Result { private List<AccountsItem> accounts; private Pagination pagination; public List<AccountsItem> getAccounts() { return this.accounts; } public void setAccounts(List<AccountsItem> accounts) { this.accounts = accounts; } public Pagination getPagination() { return this.pagination; } public void setPagination(Pagination pagination) { this.pagination = pagination; } public static class AccountsItem { private String accountPublicKey; private String account; private String accountRecoveryKey; private String accountStatus; private String antChainId; public String getAccountPublicKey() { return this.accountPublicKey; } public void setAccountPublicKey(String accountPublicKey) { this.accountPublicKey = accountPublicKey; } public String getAccount() { return this.account; } public void setAccount(String account) { this.account = account; } public String getAccountRecoveryKey() { return this.accountRecoveryKey; } public void setAccountRecoveryKey(String accountRecoveryKey) { this.accountRecoveryKey = accountRecoveryKey; } public String getAccountStatus() { return this.accountStatus; } public void setAccountStatus(String accountStatus) { this.accountStatus = accountStatus; } public String getAntChainId() { return this.antChainId; } public void setAntChainId(String antChainId) { this.antChainId = antChainId; } } public static class Pagination { private Integer pageSize; private Integer pageNumber; private Integer totalCount; public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; } public Integer getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; } public Integer getTotalCount() { return this.totalCount; } public void setTotalCount(Integer totalCount) { this.totalCount = totalCount; } } } @Override public DescribeAntChainAccountsResponse getInstance(UnmarshallerContext context) { return DescribeAntChainAccountsResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DescribeAntChainAccountsV2Request.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.baas.model.v20181221; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.baas.Endpoint; /** * @author auto create * @version */ public class DescribeAntChainAccountsV2Request extends RpcAcsRequest<DescribeAntChainAccountsV2Response> { private Integer pageNumber; private Integer pageSize; private String antChainId; private String consortiumId; public DescribeAntChainAccountsV2Request() { super("Baas", "2018-12-21", "DescribeAntChainAccountsV2", "baas"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public Integer getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; if(pageNumber != null){ putBodyParameter("PageNumber", pageNumber.toString()); } } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; if(pageSize != null){ putBodyParameter("PageSize", pageSize.toString()); } } public String getAntChainId() { return this.antChainId; } public void setAntChainId(String antChainId) { this.antChainId = antChainId; if(antChainId != null){ putBodyParameter("AntChainId", antChainId); } } public String getConsortiumId() { return this.consortiumId; } public void setConsortiumId(String consortiumId) { this.consortiumId = consortiumId; if(consortiumId != null){ putBodyParameter("ConsortiumId", consortiumId); } } @Override public Class<DescribeAntChainAccountsV2Response> getResponseClass() { return DescribeAntChainAccountsV2Response.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DescribeAntChainAccountsV2Response.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.baas.model.v20181221; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.baas.transform.v20181221.DescribeAntChainAccountsV2ResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeAntChainAccountsV2Response extends AcsResponse { private String httpStatusCode; private String requestId; private Boolean success; private String resultMessage; private String code; private String message; private String resultCode; private Result result; public String getHttpStatusCode() { return this.httpStatusCode; } public void setHttpStatusCode(String httpStatusCode) { this.httpStatusCode = httpStatusCode; } 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 getResultMessage() { return this.resultMessage; } public void setResultMessage(String resultMessage) { this.resultMessage = resultMessage; } 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 String getResultCode() { return this.resultCode; } public void setResultCode(String resultCode) { this.resultCode = resultCode; } public Result getResult() { return this.result; } public void setResult(Result result) { this.result = result; } public static class Result { private List<AccountsItem> accounts; private Pagination pagination; public List<AccountsItem> getAccounts() { return this.accounts; } public void setAccounts(List<AccountsItem> accounts) { this.accounts = accounts; } public Pagination getPagination() { return this.pagination; } public void setPagination(Pagination pagination) { this.pagination = pagination; } public static class AccountsItem { private String accountPublicKey; private String account; private String accountRecoveryKey; private String accountStatus; private String antChainId; public String getAccountPublicKey() { return this.accountPublicKey; } public void setAccountPublicKey(String accountPublicKey) { this.accountPublicKey = accountPublicKey; } public String getAccount() { return this.account; } public void setAccount(String account) { this.account = account; } public String getAccountRecoveryKey() { return this.accountRecoveryKey; } public void setAccountRecoveryKey(String accountRecoveryKey) { this.accountRecoveryKey = accountRecoveryKey; } public String getAccountStatus() { return this.accountStatus; } public void setAccountStatus(String accountStatus) { this.accountStatus = accountStatus; } public String getAntChainId() { return this.antChainId; } public void setAntChainId(String antChainId) { this.antChainId = antChainId; } } public static class Pagination { private Integer pageSize; private Integer pageNumber; private Integer totalCount; public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; } public Integer getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; } public Integer getTotalCount() { return this.totalCount; } public void setTotalCount(Integer totalCount) { this.totalCount = totalCount; } } } @Override public DescribeAntChainAccountsV2Response getInstance(UnmarshallerContext context) { return DescribeAntChainAccountsV2ResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DescribeAntChainBlockRequest.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.baas.model.v20181221; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.baas.Endpoint; /** * @author auto create * @version */ public class DescribeAntChainBlockRequest extends RpcAcsRequest<DescribeAntChainBlockResponse> { private String antChainId; private Long height; public DescribeAntChainBlockRequest() { super("Baas", "2018-12-21", "DescribeAntChainBlock", "baas"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getAntChainId() { return this.antChainId; } public void setAntChainId(String antChainId) { this.antChainId = antChainId; if(antChainId != null){ putBodyParameter("AntChainId", antChainId); } } public Long getHeight() { return this.height; } public void setHeight(Long height) { this.height = height; if(height != null){ putBodyParameter("Height", height.toString()); } } @Override public Class<DescribeAntChainBlockResponse> getResponseClass() { return DescribeAntChainBlockResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DescribeAntChainBlockResponse.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.baas.model.v20181221; import com.aliyuncs.AcsResponse; import com.aliyuncs.baas.transform.v20181221.DescribeAntChainBlockResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeAntChainBlockResponse extends AcsResponse { private String requestId; private Result result; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Result getResult() { return this.result; } public void setResult(Result result) { this.result = result; } public static class Result { private String previousHash; private Long version; private Integer transactionSize; private Long createTime; private String rootTxHash; private Integer height; private String blockHash; private String antChainId; private String transSummaryList; public String getPreviousHash() { return this.previousHash; } public void setPreviousHash(String previousHash) { this.previousHash = previousHash; } public Long getVersion() { return this.version; } public void setVersion(Long version) { this.version = version; } public Integer getTransactionSize() { return this.transactionSize; } public void setTransactionSize(Integer transactionSize) { this.transactionSize = transactionSize; } public Long getCreateTime() { return this.createTime; } public void setCreateTime(Long createTime) { this.createTime = createTime; } public String getRootTxHash() { return this.rootTxHash; } public void setRootTxHash(String rootTxHash) { this.rootTxHash = rootTxHash; } public Integer getHeight() { return this.height; } public void setHeight(Integer height) { this.height = height; } public String getBlockHash() { return this.blockHash; } public void setBlockHash(String blockHash) { this.blockHash = blockHash; } public String getAntChainId() { return this.antChainId; } public void setAntChainId(String antChainId) { this.antChainId = antChainId; } public String getTransSummaryList() { return this.transSummaryList; } public void setTransSummaryList(String transSummaryList) { this.transSummaryList = transSummaryList; } } @Override public DescribeAntChainBlockResponse getInstance(UnmarshallerContext context) { return DescribeAntChainBlockResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DescribeAntChainBlockV2Request.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.baas.model.v20181221; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.baas.Endpoint; /** * @author auto create * @version */ public class DescribeAntChainBlockV2Request extends RpcAcsRequest<DescribeAntChainBlockV2Response> { private String antChainId; private Long height; private String consortiumId; public DescribeAntChainBlockV2Request() { super("Baas", "2018-12-21", "DescribeAntChainBlockV2", "baas"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getAntChainId() { return this.antChainId; } public void setAntChainId(String antChainId) { this.antChainId = antChainId; if(antChainId != null){ putBodyParameter("AntChainId", antChainId); } } public Long getHeight() { return this.height; } public void setHeight(Long height) { this.height = height; if(height != null){ putBodyParameter("Height", height.toString()); } } public String getConsortiumId() { return this.consortiumId; } public void setConsortiumId(String consortiumId) { this.consortiumId = consortiumId; if(consortiumId != null){ putBodyParameter("ConsortiumId", consortiumId); } } @Override public Class<DescribeAntChainBlockV2Response> getResponseClass() { return DescribeAntChainBlockV2Response.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DescribeAntChainBlockV2Response.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.baas.model.v20181221; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.baas.transform.v20181221.DescribeAntChainBlockV2ResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeAntChainBlockV2Response extends AcsResponse { private String httpStatusCode; private String requestId; private Boolean success; private String resultMessage; private String code; private String message; private String resultCode; private Result result; public String getHttpStatusCode() { return this.httpStatusCode; } public void setHttpStatusCode(String httpStatusCode) { this.httpStatusCode = httpStatusCode; } 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 getResultMessage() { return this.resultMessage; } public void setResultMessage(String resultMessage) { this.resultMessage = resultMessage; } 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 String getResultCode() { return this.resultCode; } public void setResultCode(String resultCode) { this.resultCode = resultCode; } public Result getResult() { return this.result; } public void setResult(Result result) { this.result = result; } public static class Result { private String previousHash; private Long version; private String rootTxHash; private Long createTime; private Integer transactionSize; private Integer height; private String blockHash; private String antChainId; private List<TransSummaryListItem> transSummaryList; public String getPreviousHash() { return this.previousHash; } public void setPreviousHash(String previousHash) { this.previousHash = previousHash; } public Long getVersion() { return this.version; } public void setVersion(Long version) { this.version = version; } public String getRootTxHash() { return this.rootTxHash; } public void setRootTxHash(String rootTxHash) { this.rootTxHash = rootTxHash; } public Long getCreateTime() { return this.createTime; } public void setCreateTime(Long createTime) { this.createTime = createTime; } public Integer getTransactionSize() { return this.transactionSize; } public void setTransactionSize(Integer transactionSize) { this.transactionSize = transactionSize; } public Integer getHeight() { return this.height; } public void setHeight(Integer height) { this.height = height; } public String getBlockHash() { return this.blockHash; } public void setBlockHash(String blockHash) { this.blockHash = blockHash; } public String getAntChainId() { return this.antChainId; } public void setAntChainId(String antChainId) { this.antChainId = antChainId; } public List<TransSummaryListItem> getTransSummaryList() { return this.transSummaryList; } public void setTransSummaryList(List<TransSummaryListItem> transSummaryList) { this.transSummaryList = transSummaryList; } public static class TransSummaryListItem { private String hash; private String from; private String transTypeV10; private Long createTime; private String transTypeV6; private Long height; private String to; private Long gasUsed; private String blockHash; private Integer referenceCount; private Integer category; private String alias; public String getHash() { return this.hash; } public void setHash(String hash) { this.hash = hash; } public String getFrom() { return this.from; } public void setFrom(String from) { this.from = from; } public String getTransTypeV10() { return this.transTypeV10; } public void setTransTypeV10(String transTypeV10) { this.transTypeV10 = transTypeV10; } public Long getCreateTime() { return this.createTime; } public void setCreateTime(Long createTime) { this.createTime = createTime; } public String getTransTypeV6() { return this.transTypeV6; } public void setTransTypeV6(String transTypeV6) { this.transTypeV6 = transTypeV6; } public Long getHeight() { return this.height; } public void setHeight(Long height) { this.height = height; } public String getTo() { return this.to; } public void setTo(String to) { this.to = to; } public Long getGasUsed() { return this.gasUsed; } public void setGasUsed(Long gasUsed) { this.gasUsed = gasUsed; } public String getBlockHash() { return this.blockHash; } public void setBlockHash(String blockHash) { this.blockHash = blockHash; } public Integer getReferenceCount() { return this.referenceCount; } public void setReferenceCount(Integer referenceCount) { this.referenceCount = referenceCount; } public Integer getCategory() { return this.category; } public void setCategory(Integer category) { this.category = category; } public String getAlias() { return this.alias; } public void setAlias(String alias) { this.alias = alias; } } } @Override public DescribeAntChainBlockV2Response getInstance(UnmarshallerContext context) { return DescribeAntChainBlockV2ResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DescribeAntChainCertificateApplicationsRequest.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.baas.model.v20181221; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.baas.Endpoint; /** * @author auto create * @version */ public class DescribeAntChainCertificateApplicationsRequest extends RpcAcsRequest<DescribeAntChainCertificateApplicationsResponse> { private Integer pageNumber; private String antChainId; private Integer pageSize; private String status; public DescribeAntChainCertificateApplicationsRequest() { super("Baas", "2018-12-21", "DescribeAntChainCertificateApplications", "baas"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public Integer getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; if(pageNumber != null){ putBodyParameter("PageNumber", pageNumber.toString()); } } public String getAntChainId() { return this.antChainId; } public void setAntChainId(String antChainId) { this.antChainId = antChainId; if(antChainId != null){ putBodyParameter("AntChainId", antChainId); } } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; if(pageSize != null){ putBodyParameter("PageSize", pageSize.toString()); } } public String getStatus() { return this.status; } public void setStatus(String status) { this.status = status; if(status != null){ putBodyParameter("Status", status); } } @Override public Class<DescribeAntChainCertificateApplicationsResponse> getResponseClass() { return DescribeAntChainCertificateApplicationsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model
java-sources/com/aliyun/aliyun-java-sdk-baas/2.2.3/com/aliyuncs/baas/model/v20181221/DescribeAntChainCertificateApplicationsResponse.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.baas.model.v20181221; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.baas.transform.v20181221.DescribeAntChainCertificateApplicationsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeAntChainCertificateApplicationsResponse extends AcsResponse { private String requestId; private Result result; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Result getResult() { return this.result; } public void setResult(Result result) { this.result = result; } public static class Result { private List<CertificateApplicationsItem> certificateApplications; private Pagination pagination; public List<CertificateApplicationsItem> getCertificateApplications() { return this.certificateApplications; } public void setCertificateApplications(List<CertificateApplicationsItem> certificateApplications) { this.certificateApplications = certificateApplications; } public Pagination getPagination() { return this.pagination; } public void setPagination(Pagination pagination) { this.pagination = pagination; } public static class CertificateApplicationsItem { private String status; private Long updatetime; private Long createtime; private String bid; private String antChainId; private String username; public String getStatus() { return this.status; } public void setStatus(String status) { this.status = status; } public Long getUpdatetime() { return this.updatetime; } public void setUpdatetime(Long updatetime) { this.updatetime = updatetime; } public Long getCreatetime() { return this.createtime; } public void setCreatetime(Long createtime) { this.createtime = createtime; } public String getBid() { return this.bid; } public void setBid(String bid) { this.bid = bid; } public String getAntChainId() { return this.antChainId; } public void setAntChainId(String antChainId) { this.antChainId = antChainId; } public String getUsername() { return this.username; } public void setUsername(String username) { this.username = username; } } public static class Pagination { private Integer pageSize; private Integer pageNumber; private Integer totalCount; public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; } public Integer getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; } public Integer getTotalCount() { return this.totalCount; } public void setTotalCount(Integer totalCount) { this.totalCount = totalCount; } } } @Override public DescribeAntChainCertificateApplicationsResponse getInstance(UnmarshallerContext context) { return DescribeAntChainCertificateApplicationsResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }