index
int64 | repo_id
string | file_path
string | content
string |
|---|---|---|---|
0
|
java-sources/com/aliyun/aliyun-java-sdk-commondriver/2.2.8/com/aliyuncs/commondriver/model
|
java-sources/com/aliyun/aliyun-java-sdk-commondriver/2.2.8/com/aliyuncs/commondriver/model/v20160712/PutInstanceIdsToTokenResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.commondriver.model.v20160712;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.commondriver.transform.v20160712.PutInstanceIdsToTokenResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class PutInstanceIdsToTokenResponse extends AcsResponse {
private String message;
private String requestId;
private String data;
private String i18nKey;
private String code;
private Boolean success;
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 String getData() {
return this.data;
}
public void setData(String data) {
this.data = data;
}
public String getI18nKey() {
return this.i18nKey;
}
public void setI18nKey(String i18nKey) {
this.i18nKey = i18nKey;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
@Override
public PutInstanceIdsToTokenResponse getInstance(UnmarshallerContext context) {
return PutInstanceIdsToTokenResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-commondriver/2.2.8/com/aliyuncs/commondriver/model
|
java-sources/com/aliyun/aliyun-java-sdk-commondriver/2.2.8/com/aliyuncs/commondriver/model/v20160712/QueryHostRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.commondriver.model.v20160712;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
/**
* @author auto create
* @version
*/
public class QueryHostRequest extends RpcAcsRequest<QueryHostResponse> {
private String param;
public QueryHostRequest() {
super("Commondriver", "2016-07-12", "QueryHost");
setMethod(MethodType.POST);
}
public String getParam() {
return this.param;
}
public void setParam(String param) {
this.param = param;
if(param != null){
putQueryParameter("Param", param);
}
}
@Override
public Class<QueryHostResponse> getResponseClass() {
return QueryHostResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-commondriver/2.2.8/com/aliyuncs/commondriver/model
|
java-sources/com/aliyun/aliyun-java-sdk-commondriver/2.2.8/com/aliyuncs/commondriver/model/v20160712/QueryHostResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.commondriver.model.v20160712;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.commondriver.transform.v20160712.QueryHostResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class QueryHostResponse extends AcsResponse {
private String code;
private String message;
private String data;
private String requestId;
private Boolean 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 String getData() {
return this.data;
}
public void setData(String data) {
this.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;
}
@Override
public QueryHostResponse getInstance(UnmarshallerContext context) {
return QueryHostResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-commondriver/2.2.8/com/aliyuncs/commondriver/model
|
java-sources/com/aliyun/aliyun-java-sdk-commondriver/2.2.8/com/aliyuncs/commondriver/model/v20160712/UpdateHostRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.commondriver.model.v20160712;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
/**
* @author auto create
* @version
*/
public class UpdateHostRequest extends RpcAcsRequest<UpdateHostResponse> {
private String param;
public UpdateHostRequest() {
super("Commondriver", "2016-07-12", "UpdateHost");
setMethod(MethodType.POST);
}
public String getParam() {
return this.param;
}
public void setParam(String param) {
this.param = param;
if(param != null){
putQueryParameter("Param", param);
}
}
@Override
public Class<UpdateHostResponse> getResponseClass() {
return UpdateHostResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-commondriver/2.2.8/com/aliyuncs/commondriver/model
|
java-sources/com/aliyun/aliyun-java-sdk-commondriver/2.2.8/com/aliyuncs/commondriver/model/v20160712/UpdateHostResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.commondriver.model.v20160712;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.commondriver.transform.v20160712.UpdateHostResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class UpdateHostResponse extends AcsResponse {
private String requestId;
private String code;
private String message;
private Boolean success;
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;
}
@Override
public UpdateHostResponse getInstance(UnmarshallerContext context) {
return UpdateHostResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-commondriver/2.2.8/com/aliyuncs/commondriver/transform
|
java-sources/com/aliyun/aliyun-java-sdk-commondriver/2.2.8/com/aliyuncs/commondriver/transform/v20160712/ActiveProductResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.commondriver.transform.v20160712;
import com.aliyuncs.commondriver.model.v20160712.ActiveProductResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class ActiveProductResponseUnmarshaller {
public static ActiveProductResponse unmarshall(ActiveProductResponse activeProductResponse, UnmarshallerContext _ctx) {
activeProductResponse.setRequestId(_ctx.stringValue("ActiveProductResponse.RequestId"));
activeProductResponse.setCode(_ctx.stringValue("ActiveProductResponse.Code"));
activeProductResponse.setMessage(_ctx.stringValue("ActiveProductResponse.Message"));
activeProductResponse.setData(_ctx.stringValue("ActiveProductResponse.Data"));
activeProductResponse.setSuccess(_ctx.booleanValue("ActiveProductResponse.Success"));
return activeProductResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-commondriver/2.2.8/com/aliyuncs/commondriver/transform
|
java-sources/com/aliyun/aliyun-java-sdk-commondriver/2.2.8/com/aliyuncs/commondriver/transform/v20160712/CreateOrderIapResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.commondriver.transform.v20160712;
import com.aliyuncs.commondriver.model.v20160712.CreateOrderIapResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class CreateOrderIapResponseUnmarshaller {
public static CreateOrderIapResponse unmarshall(CreateOrderIapResponse createOrderIapResponse, UnmarshallerContext _ctx) {
createOrderIapResponse.setRequestId(_ctx.stringValue("CreateOrderIapResponse.RequestId"));
createOrderIapResponse.setCode(_ctx.stringValue("CreateOrderIapResponse.Code"));
createOrderIapResponse.setMessage(_ctx.stringValue("CreateOrderIapResponse.Message"));
createOrderIapResponse.setData(_ctx.stringValue("CreateOrderIapResponse.Data"));
createOrderIapResponse.setSuccess(_ctx.booleanValue("CreateOrderIapResponse.Success"));
return createOrderIapResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-commondriver/2.2.8/com/aliyuncs/commondriver/transform
|
java-sources/com/aliyun/aliyun-java-sdk-commondriver/2.2.8/com/aliyuncs/commondriver/transform/v20160712/GetInstanceIdsFromTokenResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.commondriver.transform.v20160712;
import com.aliyuncs.commondriver.model.v20160712.GetInstanceIdsFromTokenResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class GetInstanceIdsFromTokenResponseUnmarshaller {
public static GetInstanceIdsFromTokenResponse unmarshall(GetInstanceIdsFromTokenResponse getInstanceIdsFromTokenResponse, UnmarshallerContext _ctx) {
getInstanceIdsFromTokenResponse.setRequestId(_ctx.stringValue("GetInstanceIdsFromTokenResponse.RequestId"));
getInstanceIdsFromTokenResponse.setMessage(_ctx.stringValue("GetInstanceIdsFromTokenResponse.Message"));
getInstanceIdsFromTokenResponse.setData(_ctx.stringValue("GetInstanceIdsFromTokenResponse.Data"));
getInstanceIdsFromTokenResponse.setI18nKey(_ctx.stringValue("GetInstanceIdsFromTokenResponse.I18nKey"));
getInstanceIdsFromTokenResponse.setCode(_ctx.stringValue("GetInstanceIdsFromTokenResponse.Code"));
getInstanceIdsFromTokenResponse.setSuccess(_ctx.booleanValue("GetInstanceIdsFromTokenResponse.Success"));
return getInstanceIdsFromTokenResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-commondriver/2.2.8/com/aliyuncs/commondriver/transform
|
java-sources/com/aliyun/aliyun-java-sdk-commondriver/2.2.8/com/aliyuncs/commondriver/transform/v20160712/GetPlanItemSpecificationResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.commondriver.transform.v20160712;
import com.aliyuncs.commondriver.model.v20160712.GetPlanItemSpecificationResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class GetPlanItemSpecificationResponseUnmarshaller {
public static GetPlanItemSpecificationResponse unmarshall(GetPlanItemSpecificationResponse getPlanItemSpecificationResponse, UnmarshallerContext _ctx) {
getPlanItemSpecificationResponse.setRequestId(_ctx.stringValue("GetPlanItemSpecificationResponse.RequestId"));
getPlanItemSpecificationResponse.setCode(_ctx.stringValue("GetPlanItemSpecificationResponse.Code"));
getPlanItemSpecificationResponse.setData(_ctx.stringValue("GetPlanItemSpecificationResponse.Data"));
getPlanItemSpecificationResponse.setSuccess(_ctx.booleanValue("GetPlanItemSpecificationResponse.Success"));
return getPlanItemSpecificationResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-commondriver/2.2.8/com/aliyuncs/commondriver/transform
|
java-sources/com/aliyun/aliyun-java-sdk-commondriver/2.2.8/com/aliyuncs/commondriver/transform/v20160712/GetPlanSpecificationResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.commondriver.transform.v20160712;
import com.aliyuncs.commondriver.model.v20160712.GetPlanSpecificationResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class GetPlanSpecificationResponseUnmarshaller {
public static GetPlanSpecificationResponse unmarshall(GetPlanSpecificationResponse getPlanSpecificationResponse, UnmarshallerContext _ctx) {
getPlanSpecificationResponse.setRequestId(_ctx.stringValue("GetPlanSpecificationResponse.RequestId"));
getPlanSpecificationResponse.setCode(_ctx.stringValue("GetPlanSpecificationResponse.Code"));
getPlanSpecificationResponse.setMessage(_ctx.stringValue("GetPlanSpecificationResponse.Message"));
getPlanSpecificationResponse.setData(_ctx.stringValue("GetPlanSpecificationResponse.Data"));
getPlanSpecificationResponse.setSuccess(_ctx.stringValue("GetPlanSpecificationResponse.Success"));
return getPlanSpecificationResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-commondriver/2.2.8/com/aliyuncs/commondriver/transform
|
java-sources/com/aliyun/aliyun-java-sdk-commondriver/2.2.8/com/aliyuncs/commondriver/transform/v20160712/GetSpecificationsResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.commondriver.transform.v20160712;
import com.aliyuncs.commondriver.model.v20160712.GetSpecificationsResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class GetSpecificationsResponseUnmarshaller {
public static GetSpecificationsResponse unmarshall(GetSpecificationsResponse getSpecificationsResponse, UnmarshallerContext _ctx) {
getSpecificationsResponse.setRequestId(_ctx.stringValue("GetSpecificationsResponse.RequestId"));
getSpecificationsResponse.setCode(_ctx.stringValue("GetSpecificationsResponse.Code"));
getSpecificationsResponse.setMessage(_ctx.stringValue("GetSpecificationsResponse.Message"));
getSpecificationsResponse.setData(_ctx.stringValue("GetSpecificationsResponse.Data"));
getSpecificationsResponse.setSuccess(_ctx.booleanValue("GetSpecificationsResponse.Success"));
return getSpecificationsResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-commondriver/2.2.8/com/aliyuncs/commondriver/transform
|
java-sources/com/aliyun/aliyun-java-sdk-commondriver/2.2.8/com/aliyuncs/commondriver/transform/v20160712/GlobalSyncSubDataResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.commondriver.transform.v20160712;
import com.aliyuncs.commondriver.model.v20160712.GlobalSyncSubDataResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class GlobalSyncSubDataResponseUnmarshaller {
public static GlobalSyncSubDataResponse unmarshall(GlobalSyncSubDataResponse globalSyncSubDataResponse, UnmarshallerContext _ctx) {
globalSyncSubDataResponse.setRequestId(_ctx.stringValue("GlobalSyncSubDataResponse.RequestId"));
globalSyncSubDataResponse.setCode(_ctx.stringValue("GlobalSyncSubDataResponse.Code"));
globalSyncSubDataResponse.setMessage(_ctx.stringValue("GlobalSyncSubDataResponse.Message"));
globalSyncSubDataResponse.setData(_ctx.stringValue("GlobalSyncSubDataResponse.Data"));
globalSyncSubDataResponse.setSuccess(_ctx.booleanValue("GlobalSyncSubDataResponse.Success"));
return globalSyncSubDataResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-commondriver/2.2.8/com/aliyuncs/commondriver/transform
|
java-sources/com/aliyun/aliyun-java-sdk-commondriver/2.2.8/com/aliyuncs/commondriver/transform/v20160712/GlobalSyncSubReleaseResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.commondriver.transform.v20160712;
import com.aliyuncs.commondriver.model.v20160712.GlobalSyncSubReleaseResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class GlobalSyncSubReleaseResponseUnmarshaller {
public static GlobalSyncSubReleaseResponse unmarshall(GlobalSyncSubReleaseResponse globalSyncSubReleaseResponse, UnmarshallerContext _ctx) {
globalSyncSubReleaseResponse.setRequestId(_ctx.stringValue("GlobalSyncSubReleaseResponse.RequestId"));
globalSyncSubReleaseResponse.setCode(_ctx.stringValue("GlobalSyncSubReleaseResponse.Code"));
globalSyncSubReleaseResponse.setMessage(_ctx.stringValue("GlobalSyncSubReleaseResponse.Message"));
globalSyncSubReleaseResponse.setData(_ctx.stringValue("GlobalSyncSubReleaseResponse.Data"));
globalSyncSubReleaseResponse.setSuccess(_ctx.booleanValue("GlobalSyncSubReleaseResponse.Success"));
return globalSyncSubReleaseResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-commondriver/2.2.8/com/aliyuncs/commondriver/transform
|
java-sources/com/aliyun/aliyun-java-sdk-commondriver/2.2.8/com/aliyuncs/commondriver/transform/v20160712/HostBindResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.commondriver.transform.v20160712;
import com.aliyuncs.commondriver.model.v20160712.HostBindResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class HostBindResponseUnmarshaller {
public static HostBindResponse unmarshall(HostBindResponse hostBindResponse, UnmarshallerContext _ctx) {
hostBindResponse.setRequestId(_ctx.stringValue("HostBindResponse.RequestId"));
hostBindResponse.setCode(_ctx.stringValue("HostBindResponse.Code"));
hostBindResponse.setMessage(_ctx.stringValue("HostBindResponse.Message"));
hostBindResponse.setData(_ctx.stringValue("HostBindResponse.Data"));
hostBindResponse.setSuccess(_ctx.booleanValue("HostBindResponse.Success"));
return hostBindResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-commondriver/2.2.8/com/aliyuncs/commondriver/transform
|
java-sources/com/aliyun/aliyun-java-sdk-commondriver/2.2.8/com/aliyuncs/commondriver/transform/v20160712/PutInstanceIdsToTokenResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.commondriver.transform.v20160712;
import com.aliyuncs.commondriver.model.v20160712.PutInstanceIdsToTokenResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class PutInstanceIdsToTokenResponseUnmarshaller {
public static PutInstanceIdsToTokenResponse unmarshall(PutInstanceIdsToTokenResponse putInstanceIdsToTokenResponse, UnmarshallerContext _ctx) {
putInstanceIdsToTokenResponse.setRequestId(_ctx.stringValue("PutInstanceIdsToTokenResponse.RequestId"));
putInstanceIdsToTokenResponse.setMessage(_ctx.stringValue("PutInstanceIdsToTokenResponse.Message"));
putInstanceIdsToTokenResponse.setData(_ctx.stringValue("PutInstanceIdsToTokenResponse.Data"));
putInstanceIdsToTokenResponse.setI18nKey(_ctx.stringValue("PutInstanceIdsToTokenResponse.I18nKey"));
putInstanceIdsToTokenResponse.setCode(_ctx.stringValue("PutInstanceIdsToTokenResponse.Code"));
putInstanceIdsToTokenResponse.setSuccess(_ctx.booleanValue("PutInstanceIdsToTokenResponse.Success"));
return putInstanceIdsToTokenResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-commondriver/2.2.8/com/aliyuncs/commondriver/transform
|
java-sources/com/aliyun/aliyun-java-sdk-commondriver/2.2.8/com/aliyuncs/commondriver/transform/v20160712/QueryHostResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.commondriver.transform.v20160712;
import com.aliyuncs.commondriver.model.v20160712.QueryHostResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class QueryHostResponseUnmarshaller {
public static QueryHostResponse unmarshall(QueryHostResponse queryHostResponse, UnmarshallerContext _ctx) {
queryHostResponse.setRequestId(_ctx.stringValue("QueryHostResponse.RequestId"));
queryHostResponse.setCode(_ctx.stringValue("QueryHostResponse.Code"));
queryHostResponse.setMessage(_ctx.stringValue("QueryHostResponse.Message"));
queryHostResponse.setData(_ctx.stringValue("QueryHostResponse.Data"));
queryHostResponse.setSuccess(_ctx.booleanValue("QueryHostResponse.Success"));
return queryHostResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-commondriver/2.2.8/com/aliyuncs/commondriver/transform
|
java-sources/com/aliyun/aliyun-java-sdk-commondriver/2.2.8/com/aliyuncs/commondriver/transform/v20160712/UpdateHostResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.commondriver.transform.v20160712;
import com.aliyuncs.commondriver.model.v20160712.UpdateHostResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class UpdateHostResponseUnmarshaller {
public static UpdateHostResponse unmarshall(UpdateHostResponse updateHostResponse, UnmarshallerContext _ctx) {
updateHostResponse.setRequestId(_ctx.stringValue("UpdateHostResponse.RequestId"));
updateHostResponse.setCode(_ctx.stringValue("UpdateHostResponse.Code"));
updateHostResponse.setMessage(_ctx.stringValue("UpdateHostResponse.Message"));
updateHostResponse.setSuccess(_ctx.booleanValue("UpdateHostResponse.Success"));
return updateHostResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/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.companyreg;
import java.util.HashMap;
public class Endpoint {
public static HashMap<String, String> endpointMap = new HashMap<String, String>() {
{
put("cn-shanghai-internal-test-1", "companyreg.aliyuncs.com");
put("cn-shenzhen-su18-b01", "companyreg.aliyuncs.com");
put("cn-beijing", "companyreg.aliyuncs.com");
put("cn-shanghai-inner", "companyreg.aliyuncs.com");
put("cn-hangzhou-internal-prod-1", "companyreg.aliyuncs.com");
put("cn-north-2-gov-1", "companyreg.aliyuncs.com");
put("cn-yushanfang", "companyreg.aliyuncs.com");
put("cn-qingdao-nebula", "companyreg.aliyuncs.com");
put("cn-beijing-finance-pop", "companyreg.aliyuncs.com");
put("cn-wuhan", "companyreg.aliyuncs.com");
put("cn-zhangjiakou", "companyreg.aliyuncs.com");
put("us-west-1", "companyreg.aliyuncs.com");
put("cn-zhangbei", "companyreg.aliyuncs.com");
put("rus-west-1-pop", "companyreg.aliyuncs.com");
put("cn-shanghai-et15-b01", "companyreg.aliyuncs.com");
put("cn-hangzhou-bj-b01", "companyreg.aliyuncs.com");
put("cn-zhangbei-na61-b01", "companyreg.aliyuncs.com");
put("ap-northeast-1", "companyreg.aliyuncs.com");
put("cn-huhehaote-nebula-1", "companyreg.aliyuncs.com");
put("cn-shanghai-et2-b01", "companyreg.aliyuncs.com");
put("ap-southeast-1", "companyreg.aliyuncs.com");
put("ap-southeast-2", "companyreg.aliyuncs.com");
put("ap-southeast-3", "companyreg.aliyuncs.com");
put("ap-southeast-5", "companyreg.aliyuncs.com");
put("us-east-1", "companyreg.aliyuncs.com");
put("cn-shenzhen-inner", "companyreg.aliyuncs.com");
put("cn-zhangjiakou-na62-a01", "companyreg.aliyuncs.com");
put("cn-beijing-gov-1", "companyreg.aliyuncs.com");
put("cn-wulanchabu", "companyreg.aliyuncs.com");
put("ap-south-1", "companyreg.aliyuncs.com");
put("cn-shenzhen-st4-d01", "companyreg.aliyuncs.com");
put("cn-haidian-cm12-c01", "companyreg.aliyuncs.com");
put("cn-qingdao", "companyreg.aliyuncs.com");
put("cn-hongkong-finance-pop", "companyreg.aliyuncs.com");
put("cn-shanghai", "companyreg.aliyuncs.com");
put("cn-shanghai-finance-1", "companyreg.aliyuncs.com");
put("cn-hongkong", "companyreg.aliyuncs.com");
put("eu-central-1", "companyreg.aliyuncs.com");
put("cn-shenzhen", "companyreg.aliyuncs.com");
put("cn-zhengzhou-nebula-1", "companyreg.aliyuncs.com");
put("eu-west-1", "companyreg.aliyuncs.com");
put("cn-hangzhou-internal-test-1", "companyreg.aliyuncs.com");
put("eu-west-1-oxs", "companyreg.aliyuncs.com");
put("cn-beijing-finance-1", "companyreg.aliyuncs.com");
put("cn-hangzhou-internal-test-3", "companyreg.aliyuncs.com");
put("cn-hangzhou-internal-test-2", "companyreg.aliyuncs.com");
put("cn-shenzhen-finance-1", "companyreg.aliyuncs.com");
put("me-east-1", "companyreg.aliyuncs.com");
put("cn-chengdu", "companyreg.aliyuncs.com");
put("cn-hangzhou-test-306", "companyreg.aliyuncs.com");
put("cn-hangzhou-finance", "companyreg.aliyuncs.com");
put("cn-beijing-nu16-b01", "companyreg.aliyuncs.com");
put("cn-edge-1", "companyreg.aliyuncs.com");
put("cn-huhehaote", "companyreg.aliyuncs.com");
put("cn-fujian", "companyreg.aliyuncs.com");
put("ap-northeast-2-pop", "companyreg.aliyuncs.com");
}
};
public static String endpointRegionalType = "regional";
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model/v20200306/BindProduceAuthorizationRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.companyreg.model.v20200306;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.companyreg.Endpoint;
/**
* @author auto create
* @version
*/
public class BindProduceAuthorizationRequest extends RpcAcsRequest<BindProduceAuthorizationResponse> {
private String bizType;
private String authorizedUserIds;
private String bizId;
public BindProduceAuthorizationRequest() {
super("companyreg", "2020-03-06", "BindProduceAuthorization", "companyreg");
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 getBizType() {
return this.bizType;
}
public void setBizType(String bizType) {
this.bizType = bizType;
if(bizType != null){
putBodyParameter("BizType", bizType);
}
}
public String getAuthorizedUserIds() {
return this.authorizedUserIds;
}
public void setAuthorizedUserIds(String authorizedUserIds) {
this.authorizedUserIds = authorizedUserIds;
if(authorizedUserIds != null){
putBodyParameter("AuthorizedUserIds", authorizedUserIds);
}
}
public String getBizId() {
return this.bizId;
}
public void setBizId(String bizId) {
this.bizId = bizId;
if(bizId != null){
putBodyParameter("BizId", bizId);
}
}
@Override
public Class<BindProduceAuthorizationResponse> getResponseClass() {
return BindProduceAuthorizationResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model/v20200306/BindProduceAuthorizationResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.companyreg.model.v20200306;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.companyreg.transform.v20200306.BindProduceAuthorizationResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class BindProduceAuthorizationResponse extends AcsResponse {
private String errorMsg;
private String requestId;
private String errorCode;
private Data data;
public String getErrorMsg() {
return this.errorMsg;
}
public void setErrorMsg(String errorMsg) {
this.errorMsg = errorMsg;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getErrorCode() {
return this.errorCode;
}
public void setErrorCode(String errorCode) {
this.errorCode = errorCode;
}
public Data getData() {
return this.data;
}
public void setData(Data data) {
this.data = data;
}
public static class Data {
private String message;
private Boolean success;
private List<AuthorizedUserListItem> authorizedUserList;
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 List<AuthorizedUserListItem> getAuthorizedUserList() {
return this.authorizedUserList;
}
public void setAuthorizedUserList(List<AuthorizedUserListItem> authorizedUserList) {
this.authorizedUserList = authorizedUserList;
}
public static class AuthorizedUserListItem {
private String userName;
private String userId;
private Integer accountValidType;
public String getUserName() {
return this.userName;
}
public void setUserName(String userName) {
this.userName = userName;
}
public String getUserId() {
return this.userId;
}
public void setUserId(String userId) {
this.userId = userId;
}
public Integer getAccountValidType() {
return this.accountValidType;
}
public void setAccountValidType(Integer accountValidType) {
this.accountValidType = accountValidType;
}
}
}
@Override
public BindProduceAuthorizationResponse getInstance(UnmarshallerContext context) {
return BindProduceAuthorizationResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model/v20200306/CloseIntentionForPartnerRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.companyreg.model.v20200306;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.companyreg.Endpoint;
/**
* @author auto create
* @version
*/
public class CloseIntentionForPartnerRequest extends RpcAcsRequest<CloseIntentionForPartnerResponse> {
private String bizType;
private String note;
private String intentionBizId;
public CloseIntentionForPartnerRequest() {
super("companyreg", "2020-03-06", "CloseIntentionForPartner", "companyreg");
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 getBizType() {
return this.bizType;
}
public void setBizType(String bizType) {
this.bizType = bizType;
if(bizType != null){
putQueryParameter("BizType", bizType);
}
}
public String getNote() {
return this.note;
}
public void setNote(String note) {
this.note = note;
if(note != null){
putQueryParameter("Note", note);
}
}
public String getIntentionBizId() {
return this.intentionBizId;
}
public void setIntentionBizId(String intentionBizId) {
this.intentionBizId = intentionBizId;
if(intentionBizId != null){
putQueryParameter("IntentionBizId", intentionBizId);
}
}
@Override
public Class<CloseIntentionForPartnerResponse> getResponseClass() {
return CloseIntentionForPartnerResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model/v20200306/CloseIntentionForPartnerResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.companyreg.model.v20200306;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.companyreg.transform.v20200306.CloseIntentionForPartnerResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class CloseIntentionForPartnerResponse extends AcsResponse {
private String errorMsg;
private String requestId;
private Boolean success;
private String errorCode;
public String getErrorMsg() {
return this.errorMsg;
}
public void setErrorMsg(String errorMsg) {
this.errorMsg = errorMsg;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getErrorCode() {
return this.errorCode;
}
public void setErrorCode(String errorCode) {
this.errorCode = errorCode;
}
@Override
public CloseIntentionForPartnerResponse getInstance(UnmarshallerContext context) {
return CloseIntentionForPartnerResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model/v20200306/CloseUserIntentionRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.companyreg.model.v20200306;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.companyreg.Endpoint;
/**
* @author auto create
* @version
*/
public class CloseUserIntentionRequest extends RpcAcsRequest<CloseUserIntentionResponse> {
private String bizType;
private String note;
private String intentionBizId;
public CloseUserIntentionRequest() {
super("companyreg", "2020-03-06", "CloseUserIntention", "companyreg");
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 getBizType() {
return this.bizType;
}
public void setBizType(String bizType) {
this.bizType = bizType;
if(bizType != null){
putQueryParameter("BizType", bizType);
}
}
public String getNote() {
return this.note;
}
public void setNote(String note) {
this.note = note;
if(note != null){
putQueryParameter("Note", note);
}
}
public String getIntentionBizId() {
return this.intentionBizId;
}
public void setIntentionBizId(String intentionBizId) {
this.intentionBizId = intentionBizId;
if(intentionBizId != null){
putQueryParameter("IntentionBizId", intentionBizId);
}
}
@Override
public Class<CloseUserIntentionResponse> getResponseClass() {
return CloseUserIntentionResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model/v20200306/CloseUserIntentionResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.companyreg.model.v20200306;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.companyreg.transform.v20200306.CloseUserIntentionResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class CloseUserIntentionResponse extends AcsResponse {
private String errorMsg;
private String requestId;
private String errorCode;
private Boolean success;
public String getErrorMsg() {
return this.errorMsg;
}
public void setErrorMsg(String errorMsg) {
this.errorMsg = errorMsg;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getErrorCode() {
return this.errorCode;
}
public void setErrorCode(String errorCode) {
this.errorCode = errorCode;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
@Override
public CloseUserIntentionResponse getInstance(UnmarshallerContext context) {
return CloseUserIntentionResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model/v20200306/CreateBusinessOpportunityRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.companyreg.model.v20200306;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.companyreg.Endpoint;
/**
* @author auto create
* @version
*/
public class CreateBusinessOpportunityRequest extends RpcAcsRequest<CreateBusinessOpportunityResponse> {
private String mobile;
private Integer source;
private String vCode;
private String contactName;
private String bizType;
public CreateBusinessOpportunityRequest() {
super("companyreg", "2020-03-06", "CreateBusinessOpportunity", "companyreg");
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 getMobile() {
return this.mobile;
}
public void setMobile(String mobile) {
this.mobile = mobile;
if(mobile != null){
putQueryParameter("Mobile", mobile);
}
}
public Integer getSource() {
return this.source;
}
public void setSource(Integer source) {
this.source = source;
if(source != null){
putQueryParameter("Source", source.toString());
}
}
public String getVCode() {
return this.vCode;
}
public void setVCode(String vCode) {
this.vCode = vCode;
if(vCode != null){
putQueryParameter("VCode", vCode);
}
}
public String getContactName() {
return this.contactName;
}
public void setContactName(String contactName) {
this.contactName = contactName;
if(contactName != null){
putQueryParameter("ContactName", contactName);
}
}
public String getBizType() {
return this.bizType;
}
public void setBizType(String bizType) {
this.bizType = bizType;
if(bizType != null){
putQueryParameter("BizType", bizType);
}
}
@Override
public Class<CreateBusinessOpportunityResponse> getResponseClass() {
return CreateBusinessOpportunityResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model/v20200306/CreateBusinessOpportunityResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.companyreg.model.v20200306;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.companyreg.transform.v20200306.CreateBusinessOpportunityResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class CreateBusinessOpportunityResponse extends AcsResponse {
private String requestId;
private String errorMessage;
private String errorCode;
private Boolean success;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getErrorMessage() {
return this.errorMessage;
}
public void setErrorMessage(String errorMessage) {
this.errorMessage = errorMessage;
}
public String getErrorCode() {
return this.errorCode;
}
public void setErrorCode(String errorCode) {
this.errorCode = errorCode;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
@Override
public CreateBusinessOpportunityResponse getInstance(UnmarshallerContext context) {
return CreateBusinessOpportunityResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model/v20200306/CreateProduceForPartnerRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.companyreg.model.v20200306;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.companyreg.Endpoint;
/**
* @author auto create
* @version
*/
public class CreateProduceForPartnerRequest extends RpcAcsRequest<CreateProduceForPartnerResponse> {
private String bizType;
private String extInfo;
private String bizId;
public CreateProduceForPartnerRequest() {
super("companyreg", "2020-03-06", "CreateProduceForPartner", "companyreg");
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 getBizType() {
return this.bizType;
}
public void setBizType(String bizType) {
this.bizType = bizType;
if(bizType != null){
putQueryParameter("BizType", bizType);
}
}
public String getExtInfo() {
return this.extInfo;
}
public void setExtInfo(String extInfo) {
this.extInfo = extInfo;
if(extInfo != null){
putQueryParameter("ExtInfo", extInfo);
}
}
public String getBizId() {
return this.bizId;
}
public void setBizId(String bizId) {
this.bizId = bizId;
if(bizId != null){
putQueryParameter("BizId", bizId);
}
}
@Override
public Class<CreateProduceForPartnerResponse> getResponseClass() {
return CreateProduceForPartnerResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model/v20200306/CreateProduceForPartnerResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.companyreg.model.v20200306;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.companyreg.transform.v20200306.CreateProduceForPartnerResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class CreateProduceForPartnerResponse extends AcsResponse {
private String bizId;
private String errorMsg;
private String requestId;
private String errorCode;
private Boolean success;
public String getBizId() {
return this.bizId;
}
public void setBizId(String bizId) {
this.bizId = bizId;
}
public String getErrorMsg() {
return this.errorMsg;
}
public void setErrorMsg(String errorMsg) {
this.errorMsg = errorMsg;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getErrorCode() {
return this.errorCode;
}
public void setErrorCode(String errorCode) {
this.errorCode = errorCode;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
@Override
public CreateProduceForPartnerResponse getInstance(UnmarshallerContext context) {
return CreateProduceForPartnerResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model/v20200306/DescribePartnerConfigRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.companyreg.model.v20200306;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.companyreg.Endpoint;
/**
* @author auto create
* @version
*/
public class DescribePartnerConfigRequest extends RpcAcsRequest<DescribePartnerConfigResponse> {
private String partnerCode;
private String bizType;
public DescribePartnerConfigRequest() {
super("companyreg", "2020-03-06", "DescribePartnerConfig", "companyreg");
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 getPartnerCode() {
return this.partnerCode;
}
public void setPartnerCode(String partnerCode) {
this.partnerCode = partnerCode;
if(partnerCode != null){
putQueryParameter("PartnerCode", partnerCode);
}
}
public String getBizType() {
return this.bizType;
}
public void setBizType(String bizType) {
this.bizType = bizType;
if(bizType != null){
putQueryParameter("BizType", bizType);
}
}
@Override
public Class<DescribePartnerConfigResponse> getResponseClass() {
return DescribePartnerConfigResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model/v20200306/DescribePartnerConfigResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.companyreg.model.v20200306;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.companyreg.transform.v20200306.DescribePartnerConfigResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribePartnerConfigResponse extends AcsResponse {
private String partnerName;
private String requestId;
private String partnerCode;
private String contact;
public String getPartnerName() {
return this.partnerName;
}
public void setPartnerName(String partnerName) {
this.partnerName = partnerName;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getPartnerCode() {
return this.partnerCode;
}
public void setPartnerCode(String partnerCode) {
this.partnerCode = partnerCode;
}
public String getContact() {
return this.contact;
}
public void setContact(String contact) {
this.contact = contact;
}
@Override
public DescribePartnerConfigResponse getInstance(UnmarshallerContext context) {
return DescribePartnerConfigResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model/v20200306/GenerateUploadFilePolicyRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.companyreg.model.v20200306;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.companyreg.Endpoint;
/**
* @author auto create
* @version
*/
public class GenerateUploadFilePolicyRequest extends RpcAcsRequest<GenerateUploadFilePolicyResponse> {
private String fileType;
private String bizType;
private String fileName;
public GenerateUploadFilePolicyRequest() {
super("companyreg", "2020-03-06", "GenerateUploadFilePolicy", "companyreg");
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 getFileType() {
return this.fileType;
}
public void setFileType(String fileType) {
this.fileType = fileType;
if(fileType != null){
putQueryParameter("FileType", fileType);
}
}
public String getBizType() {
return this.bizType;
}
public void setBizType(String bizType) {
this.bizType = bizType;
if(bizType != null){
putQueryParameter("BizType", bizType);
}
}
public String getFileName() {
return this.fileName;
}
public void setFileName(String fileName) {
this.fileName = fileName;
if(fileName != null){
putQueryParameter("FileName", fileName);
}
}
@Override
public Class<GenerateUploadFilePolicyResponse> getResponseClass() {
return GenerateUploadFilePolicyResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model/v20200306/GenerateUploadFilePolicyResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.companyreg.model.v20200306;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.companyreg.transform.v20200306.GenerateUploadFilePolicyResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GenerateUploadFilePolicyResponse extends AcsResponse {
private String signature;
private String fileUrl;
private String host;
private String requestId;
private String expireTime;
private String encodedPolicy;
private String fileDir;
private String accessId;
public String getSignature() {
return this.signature;
}
public void setSignature(String signature) {
this.signature = signature;
}
public String getFileUrl() {
return this.fileUrl;
}
public void setFileUrl(String fileUrl) {
this.fileUrl = fileUrl;
}
public String getHost() {
return this.host;
}
public void setHost(String host) {
this.host = host;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getExpireTime() {
return this.expireTime;
}
public void setExpireTime(String expireTime) {
this.expireTime = expireTime;
}
public String getEncodedPolicy() {
return this.encodedPolicy;
}
public void setEncodedPolicy(String encodedPolicy) {
this.encodedPolicy = encodedPolicy;
}
public String getFileDir() {
return this.fileDir;
}
public void setFileDir(String fileDir) {
this.fileDir = fileDir;
}
public String getAccessId() {
return this.accessId;
}
public void setAccessId(String accessId) {
this.accessId = accessId;
}
@Override
public GenerateUploadFilePolicyResponse getInstance(UnmarshallerContext context) {
return GenerateUploadFilePolicyResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model/v20200306/GetAlipayUrlRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.companyreg.model.v20200306;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.companyreg.Endpoint;
/**
* @author auto create
* @version
*/
public class GetAlipayUrlRequest extends RpcAcsRequest<GetAlipayUrlResponse> {
private Long orderId;
private String type;
private String bizType;
private String returnUrl;
public GetAlipayUrlRequest() {
super("companyreg", "2020-03-06", "GetAlipayUrl", "companyreg");
setMethod(MethodType.GET);
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 Long getOrderId() {
return this.orderId;
}
public void setOrderId(Long orderId) {
this.orderId = orderId;
if(orderId != null){
putQueryParameter("OrderId", orderId.toString());
}
}
public String getType() {
return this.type;
}
public void setType(String type) {
this.type = type;
if(type != null){
putQueryParameter("Type", type);
}
}
public String getBizType() {
return this.bizType;
}
public void setBizType(String bizType) {
this.bizType = bizType;
if(bizType != null){
putQueryParameter("BizType", bizType);
}
}
public String getReturnUrl() {
return this.returnUrl;
}
public void setReturnUrl(String returnUrl) {
this.returnUrl = returnUrl;
if(returnUrl != null){
putQueryParameter("ReturnUrl", returnUrl);
}
}
@Override
public Class<GetAlipayUrlResponse> getResponseClass() {
return GetAlipayUrlResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model/v20200306/GetAlipayUrlResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.companyreg.model.v20200306;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.companyreg.transform.v20200306.GetAlipayUrlResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetAlipayUrlResponse extends AcsResponse {
private String data;
private String requestId;
public String getData() {
return this.data;
}
public void setData(String data) {
this.data = data;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public GetAlipayUrlResponse getInstance(UnmarshallerContext context) {
return GetAlipayUrlResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model/v20200306/ListIntentionNoteRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.companyreg.model.v20200306;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.companyreg.Endpoint;
/**
* @author auto create
* @version
*/
public class ListIntentionNoteRequest extends RpcAcsRequest<ListIntentionNoteResponse> {
private Long endTime;
private Long beginTime;
private String intentionBizId;
private Integer pageNumber;
private Integer pageSize;
public ListIntentionNoteRequest() {
super("companyreg", "2020-03-06", "ListIntentionNote", "companyreg");
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 Long getEndTime() {
return this.endTime;
}
public void setEndTime(Long endTime) {
this.endTime = endTime;
if(endTime != null){
putQueryParameter("EndTime", endTime.toString());
}
}
public Long getBeginTime() {
return this.beginTime;
}
public void setBeginTime(Long beginTime) {
this.beginTime = beginTime;
if(beginTime != null){
putQueryParameter("BeginTime", beginTime.toString());
}
}
public String getIntentionBizId() {
return this.intentionBizId;
}
public void setIntentionBizId(String intentionBizId) {
this.intentionBizId = intentionBizId;
if(intentionBizId != null){
putQueryParameter("IntentionBizId", intentionBizId);
}
}
public Integer getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
if(pageNumber != null){
putQueryParameter("PageNumber", pageNumber.toString());
}
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putQueryParameter("PageSize", pageSize.toString());
}
}
@Override
public Class<ListIntentionNoteResponse> getResponseClass() {
return ListIntentionNoteResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model/v20200306/ListIntentionNoteResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.companyreg.model.v20200306;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.companyreg.transform.v20200306.ListIntentionNoteResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ListIntentionNoteResponse extends AcsResponse {
private Integer currentPageNum;
private Integer totalPageNum;
private Integer pageSize;
private String requestId;
private Integer totalItemNum;
private List<Note> data;
public Integer getCurrentPageNum() {
return this.currentPageNum;
}
public void setCurrentPageNum(Integer currentPageNum) {
this.currentPageNum = currentPageNum;
}
public Integer getTotalPageNum() {
return this.totalPageNum;
}
public void setTotalPageNum(Integer totalPageNum) {
this.totalPageNum = totalPageNum;
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Integer getTotalItemNum() {
return this.totalItemNum;
}
public void setTotalItemNum(Integer totalItemNum) {
this.totalItemNum = totalItemNum;
}
public List<Note> getData() {
return this.data;
}
public void setData(List<Note> data) {
this.data = data;
}
public static class Note {
private String type;
private String note;
private Integer source;
private String createTime;
private String intentionBizId;
public String getType() {
return this.type;
}
public void setType(String type) {
this.type = type;
}
public String getNote() {
return this.note;
}
public void setNote(String note) {
this.note = note;
}
public Integer getSource() {
return this.source;
}
public void setSource(Integer source) {
this.source = source;
}
public String getCreateTime() {
return this.createTime;
}
public void setCreateTime(String createTime) {
this.createTime = createTime;
}
public String getIntentionBizId() {
return this.intentionBizId;
}
public void setIntentionBizId(String intentionBizId) {
this.intentionBizId = intentionBizId;
}
}
@Override
public ListIntentionNoteResponse getInstance(UnmarshallerContext context) {
return ListIntentionNoteResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model/v20200306/ListProduceAuthorizationRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.companyreg.model.v20200306;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.companyreg.Endpoint;
/**
* @author auto create
* @version
*/
public class ListProduceAuthorizationRequest extends RpcAcsRequest<ListProduceAuthorizationResponse> {
private Integer pageNum;
private String bizType;
private String bizId;
private Integer pageSize;
public ListProduceAuthorizationRequest() {
super("companyreg", "2020-03-06", "ListProduceAuthorization", "companyreg");
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 getPageNum() {
return this.pageNum;
}
public void setPageNum(Integer pageNum) {
this.pageNum = pageNum;
if(pageNum != null){
putQueryParameter("PageNum", pageNum.toString());
}
}
public String getBizType() {
return this.bizType;
}
public void setBizType(String bizType) {
this.bizType = bizType;
if(bizType != null){
putQueryParameter("BizType", bizType);
}
}
public String getBizId() {
return this.bizId;
}
public void setBizId(String bizId) {
this.bizId = bizId;
if(bizId != null){
putQueryParameter("BizId", bizId);
}
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putQueryParameter("PageSize", pageSize.toString());
}
}
@Override
public Class<ListProduceAuthorizationResponse> getResponseClass() {
return ListProduceAuthorizationResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model/v20200306/ListProduceAuthorizationResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.companyreg.model.v20200306;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.companyreg.transform.v20200306.ListProduceAuthorizationResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ListProduceAuthorizationResponse extends AcsResponse {
private String requestId;
private Boolean success;
private Integer totalItemNum;
private Integer currentPageNum;
private Integer pageSize;
private Integer totalPageNum;
private List<ProduceAuthorizations> 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 Integer getTotalItemNum() {
return this.totalItemNum;
}
public void setTotalItemNum(Integer totalItemNum) {
this.totalItemNum = totalItemNum;
}
public Integer getCurrentPageNum() {
return this.currentPageNum;
}
public void setCurrentPageNum(Integer currentPageNum) {
this.currentPageNum = currentPageNum;
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
public Integer getTotalPageNum() {
return this.totalPageNum;
}
public void setTotalPageNum(Integer totalPageNum) {
this.totalPageNum = totalPageNum;
}
public List<ProduceAuthorizations> getData() {
return this.data;
}
public void setData(List<ProduceAuthorizations> data) {
this.data = data;
}
public static class ProduceAuthorizations {
private String authorizedUserId;
private String authorizedUserName;
public String getAuthorizedUserId() {
return this.authorizedUserId;
}
public void setAuthorizedUserId(String authorizedUserId) {
this.authorizedUserId = authorizedUserId;
}
public String getAuthorizedUserName() {
return this.authorizedUserName;
}
public void setAuthorizedUserName(String authorizedUserName) {
this.authorizedUserName = authorizedUserName;
}
}
@Override
public ListProduceAuthorizationResponse getInstance(UnmarshallerContext context) {
return ListProduceAuthorizationResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model/v20200306/ListUserDetailSolutionsRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.companyreg.model.v20200306;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.companyreg.Endpoint;
/**
* @author auto create
* @version
*/
public class ListUserDetailSolutionsRequest extends RpcAcsRequest<ListUserDetailSolutionsResponse> {
private String bizType;
private Integer pageSize;
private String intentionBizId;
private Integer pageNum;
public ListUserDetailSolutionsRequest() {
super("companyreg", "2020-03-06", "ListUserDetailSolutions", "companyreg");
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 getBizType() {
return this.bizType;
}
public void setBizType(String bizType) {
this.bizType = bizType;
if(bizType != null){
putQueryParameter("BizType", bizType);
}
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putQueryParameter("PageSize", pageSize.toString());
}
}
public String getIntentionBizId() {
return this.intentionBizId;
}
public void setIntentionBizId(String intentionBizId) {
this.intentionBizId = intentionBizId;
if(intentionBizId != null){
putQueryParameter("IntentionBizId", intentionBizId);
}
}
public Integer getPageNum() {
return this.pageNum;
}
public void setPageNum(Integer pageNum) {
this.pageNum = pageNum;
if(pageNum != null){
putQueryParameter("PageNum", pageNum.toString());
}
}
@Override
public Class<ListUserDetailSolutionsResponse> getResponseClass() {
return ListUserDetailSolutionsResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model/v20200306/ListUserDetailSolutionsResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.companyreg.model.v20200306;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.companyreg.transform.v20200306.ListUserDetailSolutionsResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ListUserDetailSolutionsResponse extends AcsResponse {
private Integer currentPageNum;
private Integer totalPageNum;
private String requestId;
private Integer pageSize;
private Integer totalItemNum;
private List<Solution> data;
public Integer getCurrentPageNum() {
return this.currentPageNum;
}
public void setCurrentPageNum(Integer currentPageNum) {
this.currentPageNum = currentPageNum;
}
public Integer getTotalPageNum() {
return this.totalPageNum;
}
public void setTotalPageNum(Integer totalPageNum) {
this.totalPageNum = totalPageNum;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
public Integer getTotalItemNum() {
return this.totalItemNum;
}
public void setTotalItemNum(Integer totalItemNum) {
this.totalItemNum = totalItemNum;
}
public List<Solution> getData() {
return this.data;
}
public void setData(List<Solution> data) {
this.data = data;
}
public static class Solution {
private Integer status;
private Long updateTime;
private String deliveryOrderBizId;
private Long createTime;
private String userId;
private String bizId;
private String partnerCode;
private String extInfo;
private String bizType;
private String intentionBizId;
private String reason;
private String intentionAssignBizId;
public Integer getStatus() {
return this.status;
}
public void setStatus(Integer status) {
this.status = status;
}
public Long getUpdateTime() {
return this.updateTime;
}
public void setUpdateTime(Long updateTime) {
this.updateTime = updateTime;
}
public String getDeliveryOrderBizId() {
return this.deliveryOrderBizId;
}
public void setDeliveryOrderBizId(String deliveryOrderBizId) {
this.deliveryOrderBizId = deliveryOrderBizId;
}
public Long getCreateTime() {
return this.createTime;
}
public void setCreateTime(Long createTime) {
this.createTime = createTime;
}
public String getUserId() {
return this.userId;
}
public void setUserId(String userId) {
this.userId = userId;
}
public String getBizId() {
return this.bizId;
}
public void setBizId(String bizId) {
this.bizId = bizId;
}
public String getPartnerCode() {
return this.partnerCode;
}
public void setPartnerCode(String partnerCode) {
this.partnerCode = partnerCode;
}
public String getExtInfo() {
return this.extInfo;
}
public void setExtInfo(String extInfo) {
this.extInfo = extInfo;
}
public String getBizType() {
return this.bizType;
}
public void setBizType(String bizType) {
this.bizType = bizType;
}
public String getIntentionBizId() {
return this.intentionBizId;
}
public void setIntentionBizId(String intentionBizId) {
this.intentionBizId = intentionBizId;
}
public String getReason() {
return this.reason;
}
public void setReason(String reason) {
this.reason = reason;
}
public String getIntentionAssignBizId() {
return this.intentionAssignBizId;
}
public void setIntentionAssignBizId(String intentionAssignBizId) {
this.intentionAssignBizId = intentionAssignBizId;
}
}
@Override
public ListUserDetailSolutionsResponse getInstance(UnmarshallerContext context) {
return ListUserDetailSolutionsResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model/v20200306/ListUserIntentionNotesRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.companyreg.model.v20200306;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.companyreg.Endpoint;
/**
* @author auto create
* @version
*/
public class ListUserIntentionNotesRequest extends RpcAcsRequest<ListUserIntentionNotesResponse> {
private String bizType;
private Integer pageSize;
private String intentionBizId;
private Integer pageNum;
public ListUserIntentionNotesRequest() {
super("companyreg", "2020-03-06", "ListUserIntentionNotes", "companyreg");
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 getBizType() {
return this.bizType;
}
public void setBizType(String bizType) {
this.bizType = bizType;
if(bizType != null){
putQueryParameter("BizType", bizType);
}
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putQueryParameter("PageSize", pageSize.toString());
}
}
public String getIntentionBizId() {
return this.intentionBizId;
}
public void setIntentionBizId(String intentionBizId) {
this.intentionBizId = intentionBizId;
if(intentionBizId != null){
putQueryParameter("IntentionBizId", intentionBizId);
}
}
public Integer getPageNum() {
return this.pageNum;
}
public void setPageNum(Integer pageNum) {
this.pageNum = pageNum;
if(pageNum != null){
putQueryParameter("PageNum", pageNum.toString());
}
}
@Override
public Class<ListUserIntentionNotesResponse> getResponseClass() {
return ListUserIntentionNotesResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model/v20200306/ListUserIntentionNotesResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.companyreg.model.v20200306;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.companyreg.transform.v20200306.ListUserIntentionNotesResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ListUserIntentionNotesResponse extends AcsResponse {
private Integer pageNum;
private String requestId;
private Boolean success;
private Integer totalItemNum;
private Integer pageSize;
private Integer totalPageNum;
private List<OpateLogs> data;
public Integer getPageNum() {
return this.pageNum;
}
public void setPageNum(Integer pageNum) {
this.pageNum = pageNum;
}
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 getTotalItemNum() {
return this.totalItemNum;
}
public void setTotalItemNum(Integer totalItemNum) {
this.totalItemNum = totalItemNum;
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
public Integer getTotalPageNum() {
return this.totalPageNum;
}
public void setTotalPageNum(Integer totalPageNum) {
this.totalPageNum = totalPageNum;
}
public List<OpateLogs> getData() {
return this.data;
}
public void setData(List<OpateLogs> data) {
this.data = data;
}
public static class OpateLogs {
private String note;
private String createTime;
public String getNote() {
return this.note;
}
public void setNote(String note) {
this.note = note;
}
public String getCreateTime() {
return this.createTime;
}
public void setCreateTime(String createTime) {
this.createTime = createTime;
}
}
@Override
public ListUserIntentionNotesResponse getInstance(UnmarshallerContext context) {
return ListUserIntentionNotesResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model/v20200306/ListUserIntentionsRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.companyreg.model.v20200306;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.companyreg.Endpoint;
/**
* @author auto create
* @version
*/
public class ListUserIntentionsRequest extends RpcAcsRequest<ListUserIntentionsResponse> {
private String area;
private String bizTypes;
private String intentionBizId;
private Integer pageNum;
private String sortFiled;
private String bizType;
private Boolean withExtInfo;
private Integer pageSize;
private String sortOrder;
private Integer status;
public ListUserIntentionsRequest() {
super("companyreg", "2020-03-06", "ListUserIntentions", "companyreg");
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 getArea() {
return this.area;
}
public void setArea(String area) {
this.area = area;
if(area != null){
putQueryParameter("Area", area);
}
}
public String getBizTypes() {
return this.bizTypes;
}
public void setBizTypes(String bizTypes) {
this.bizTypes = bizTypes;
if(bizTypes != null){
putQueryParameter("BizTypes", bizTypes);
}
}
public String getIntentionBizId() {
return this.intentionBizId;
}
public void setIntentionBizId(String intentionBizId) {
this.intentionBizId = intentionBizId;
if(intentionBizId != null){
putQueryParameter("IntentionBizId", intentionBizId);
}
}
public Integer getPageNum() {
return this.pageNum;
}
public void setPageNum(Integer pageNum) {
this.pageNum = pageNum;
if(pageNum != null){
putQueryParameter("PageNum", pageNum.toString());
}
}
public String getSortFiled() {
return this.sortFiled;
}
public void setSortFiled(String sortFiled) {
this.sortFiled = sortFiled;
if(sortFiled != null){
putQueryParameter("SortFiled", sortFiled);
}
}
public String getBizType() {
return this.bizType;
}
public void setBizType(String bizType) {
this.bizType = bizType;
if(bizType != null){
putQueryParameter("BizType", bizType);
}
}
public Boolean getWithExtInfo() {
return this.withExtInfo;
}
public void setWithExtInfo(Boolean withExtInfo) {
this.withExtInfo = withExtInfo;
if(withExtInfo != null){
putQueryParameter("WithExtInfo", withExtInfo.toString());
}
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putQueryParameter("PageSize", pageSize.toString());
}
}
public String getSortOrder() {
return this.sortOrder;
}
public void setSortOrder(String sortOrder) {
this.sortOrder = sortOrder;
if(sortOrder != null){
putQueryParameter("SortOrder", sortOrder);
}
}
public Integer getStatus() {
return this.status;
}
public void setStatus(Integer status) {
this.status = status;
if(status != null){
putQueryParameter("Status", status.toString());
}
}
@Override
public Class<ListUserIntentionsResponse> getResponseClass() {
return ListUserIntentionsResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model/v20200306/ListUserIntentionsResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.companyreg.model.v20200306;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.companyreg.transform.v20200306.ListUserIntentionsResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ListUserIntentionsResponse extends AcsResponse {
private Integer currentPageNum;
private Integer totalPageNum;
private Integer pageSize;
private String requestId;
private Integer totalItemNum;
private List<Intention> data;
public Integer getCurrentPageNum() {
return this.currentPageNum;
}
public void setCurrentPageNum(Integer currentPageNum) {
this.currentPageNum = currentPageNum;
}
public Integer getTotalPageNum() {
return this.totalPageNum;
}
public void setTotalPageNum(Integer totalPageNum) {
this.totalPageNum = totalPageNum;
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Integer getTotalItemNum() {
return this.totalItemNum;
}
public void setTotalItemNum(Integer totalItemNum) {
this.totalItemNum = totalItemNum;
}
public List<Intention> getData() {
return this.data;
}
public void setData(List<Intention> data) {
this.data = data;
}
public static class Intention {
private Integer status;
private Long updateTime;
private String description;
private String mobile;
private Long createTime;
private String userId;
private String contactName;
private String bizId;
private String area;
private String reason;
private String bizType;
private String ext;
public Integer getStatus() {
return this.status;
}
public void setStatus(Integer status) {
this.status = status;
}
public Long getUpdateTime() {
return this.updateTime;
}
public void setUpdateTime(Long updateTime) {
this.updateTime = updateTime;
}
public String getDescription() {
return this.description;
}
public void setDescription(String description) {
this.description = description;
}
public String getMobile() {
return this.mobile;
}
public void setMobile(String mobile) {
this.mobile = mobile;
}
public Long getCreateTime() {
return this.createTime;
}
public void setCreateTime(Long createTime) {
this.createTime = createTime;
}
public String getUserId() {
return this.userId;
}
public void setUserId(String userId) {
this.userId = userId;
}
public String getContactName() {
return this.contactName;
}
public void setContactName(String contactName) {
this.contactName = contactName;
}
public String getBizId() {
return this.bizId;
}
public void setBizId(String bizId) {
this.bizId = bizId;
}
public String getArea() {
return this.area;
}
public void setArea(String area) {
this.area = area;
}
public String getReason() {
return this.reason;
}
public void setReason(String reason) {
this.reason = reason;
}
public String getBizType() {
return this.bizType;
}
public void setBizType(String bizType) {
this.bizType = bizType;
}
public String getExt() {
return this.ext;
}
public void setExt(String ext) {
this.ext = ext;
}
}
@Override
public ListUserIntentionsResponse getInstance(UnmarshallerContext context) {
return ListUserIntentionsResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model/v20200306/ListUserProduceOperateLogsRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.companyreg.model.v20200306;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.companyreg.Endpoint;
/**
* @author auto create
* @version
*/
public class ListUserProduceOperateLogsRequest extends RpcAcsRequest<ListUserProduceOperateLogsResponse> {
private Integer pageNum;
private String bizType;
private String bizId;
private Integer pageSize;
public ListUserProduceOperateLogsRequest() {
super("companyreg", "2020-03-06", "ListUserProduceOperateLogs", "companyreg");
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 getPageNum() {
return this.pageNum;
}
public void setPageNum(Integer pageNum) {
this.pageNum = pageNum;
if(pageNum != null){
putQueryParameter("PageNum", pageNum.toString());
}
}
public String getBizType() {
return this.bizType;
}
public void setBizType(String bizType) {
this.bizType = bizType;
if(bizType != null){
putQueryParameter("BizType", bizType);
}
}
public String getBizId() {
return this.bizId;
}
public void setBizId(String bizId) {
this.bizId = bizId;
if(bizId != null){
putQueryParameter("BizId", bizId);
}
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putQueryParameter("PageSize", pageSize.toString());
}
}
@Override
public Class<ListUserProduceOperateLogsResponse> getResponseClass() {
return ListUserProduceOperateLogsResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model/v20200306/ListUserProduceOperateLogsResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.companyreg.model.v20200306;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.companyreg.transform.v20200306.ListUserProduceOperateLogsResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ListUserProduceOperateLogsResponse extends AcsResponse {
private Integer pageNum;
private String requestId;
private Boolean success;
private Integer totalItemNum;
private Integer pageSize;
private Integer totalPageNum;
private List<OpateLogs> data;
public Integer getPageNum() {
return this.pageNum;
}
public void setPageNum(Integer pageNum) {
this.pageNum = pageNum;
}
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 getTotalItemNum() {
return this.totalItemNum;
}
public void setTotalItemNum(Integer totalItemNum) {
this.totalItemNum = totalItemNum;
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
public Integer getTotalPageNum() {
return this.totalPageNum;
}
public void setTotalPageNum(Integer totalPageNum) {
this.totalPageNum = totalPageNum;
}
public List<OpateLogs> getData() {
return this.data;
}
public void setData(List<OpateLogs> data) {
this.data = data;
}
public static class OpateLogs {
private Long operateTime;
private String operateUserType;
private String bizId;
private String operateName;
private Integer bizStatus;
private Integer toBizStatus;
private String bizType;
private String note;
public Long getOperateTime() {
return this.operateTime;
}
public void setOperateTime(Long operateTime) {
this.operateTime = operateTime;
}
public String getOperateUserType() {
return this.operateUserType;
}
public void setOperateUserType(String operateUserType) {
this.operateUserType = operateUserType;
}
public String getBizId() {
return this.bizId;
}
public void setBizId(String bizId) {
this.bizId = bizId;
}
public String getOperateName() {
return this.operateName;
}
public void setOperateName(String operateName) {
this.operateName = operateName;
}
public Integer getBizStatus() {
return this.bizStatus;
}
public void setBizStatus(Integer bizStatus) {
this.bizStatus = bizStatus;
}
public Integer getToBizStatus() {
return this.toBizStatus;
}
public void setToBizStatus(Integer toBizStatus) {
this.toBizStatus = toBizStatus;
}
public String getBizType() {
return this.bizType;
}
public void setBizType(String bizType) {
this.bizType = bizType;
}
public String getNote() {
return this.note;
}
public void setNote(String note) {
this.note = note;
}
}
@Override
public ListUserProduceOperateLogsResponse getInstance(UnmarshallerContext context) {
return ListUserProduceOperateLogsResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model/v20200306/ListUserSolutionsRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.companyreg.model.v20200306;
import com.aliyuncs.RpcAcsRequest;
import java.util.List;
import com.google.gson.Gson;
import com.google.gson.annotations.SerializedName;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.companyreg.Endpoint;
/**
* @author auto create
* @version
*/
public class ListUserSolutionsRequest extends RpcAcsRequest<ListUserSolutionsResponse> {
private Integer pageSize;
@SerializedName("existStatus")
private List<Long> existStatus;
private String intentionBizId;
private Integer pageNum;
public ListUserSolutionsRequest() {
super("companyreg", "2020-03-06", "ListUserSolutions", "companyreg");
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 getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putQueryParameter("PageSize", pageSize.toString());
}
}
public List<Long> getExistStatus() {
return this.existStatus;
}
public void setExistStatus(List<Long> existStatus) {
this.existStatus = existStatus;
if (existStatus != null) {
putQueryParameter("ExistStatus" , new Gson().toJson(existStatus));
}
}
public String getIntentionBizId() {
return this.intentionBizId;
}
public void setIntentionBizId(String intentionBizId) {
this.intentionBizId = intentionBizId;
if(intentionBizId != null){
putQueryParameter("IntentionBizId", intentionBizId);
}
}
public Integer getPageNum() {
return this.pageNum;
}
public void setPageNum(Integer pageNum) {
this.pageNum = pageNum;
if(pageNum != null){
putQueryParameter("PageNum", pageNum.toString());
}
}
@Override
public Class<ListUserSolutionsResponse> getResponseClass() {
return ListUserSolutionsResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model/v20200306/ListUserSolutionsResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.companyreg.model.v20200306;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.companyreg.transform.v20200306.ListUserSolutionsResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ListUserSolutionsResponse extends AcsResponse {
private Integer currentPageNum;
private Integer totalPageNum;
private Integer pageSize;
private String requestId;
private Integer totalItemNum;
private List<Solution> data;
public Integer getCurrentPageNum() {
return this.currentPageNum;
}
public void setCurrentPageNum(Integer currentPageNum) {
this.currentPageNum = currentPageNum;
}
public Integer getTotalPageNum() {
return this.totalPageNum;
}
public void setTotalPageNum(Integer totalPageNum) {
this.totalPageNum = totalPageNum;
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Integer getTotalItemNum() {
return this.totalItemNum;
}
public void setTotalItemNum(Integer totalItemNum) {
this.totalItemNum = totalItemNum;
}
public List<Solution> getData() {
return this.data;
}
public void setData(List<Solution> data) {
this.data = data;
}
public static class Solution {
private Integer status;
private Long updateTime;
private String deliveryOrderBizId;
private Long createTime;
private String userId;
private String bizId;
private String partnerCode;
private String reason;
private String intentionAssignBizId;
private String intentionBizId;
private String bizType;
public Integer getStatus() {
return this.status;
}
public void setStatus(Integer status) {
this.status = status;
}
public Long getUpdateTime() {
return this.updateTime;
}
public void setUpdateTime(Long updateTime) {
this.updateTime = updateTime;
}
public String getDeliveryOrderBizId() {
return this.deliveryOrderBizId;
}
public void setDeliveryOrderBizId(String deliveryOrderBizId) {
this.deliveryOrderBizId = deliveryOrderBizId;
}
public Long getCreateTime() {
return this.createTime;
}
public void setCreateTime(Long createTime) {
this.createTime = createTime;
}
public String getUserId() {
return this.userId;
}
public void setUserId(String userId) {
this.userId = userId;
}
public String getBizId() {
return this.bizId;
}
public void setBizId(String bizId) {
this.bizId = bizId;
}
public String getPartnerCode() {
return this.partnerCode;
}
public void setPartnerCode(String partnerCode) {
this.partnerCode = partnerCode;
}
public String getReason() {
return this.reason;
}
public void setReason(String reason) {
this.reason = reason;
}
public String getIntentionAssignBizId() {
return this.intentionAssignBizId;
}
public void setIntentionAssignBizId(String intentionAssignBizId) {
this.intentionAssignBizId = intentionAssignBizId;
}
public String getIntentionBizId() {
return this.intentionBizId;
}
public void setIntentionBizId(String intentionBizId) {
this.intentionBizId = intentionBizId;
}
public String getBizType() {
return this.bizType;
}
public void setBizType(String bizType) {
this.bizType = bizType;
}
}
@Override
public ListUserSolutionsResponse getInstance(UnmarshallerContext context) {
return ListUserSolutionsResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model/v20200306/OperateProduceForPartnerRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.companyreg.model.v20200306;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.companyreg.Endpoint;
/**
* @author auto create
* @version
*/
public class OperateProduceForPartnerRequest extends RpcAcsRequest<OperateProduceForPartnerResponse> {
private String bizType;
private String extInfo;
private String bizId;
private String operateType;
public OperateProduceForPartnerRequest() {
super("companyreg", "2020-03-06", "OperateProduceForPartner", "companyreg");
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 getBizType() {
return this.bizType;
}
public void setBizType(String bizType) {
this.bizType = bizType;
if(bizType != null){
putQueryParameter("BizType", bizType);
}
}
public String getExtInfo() {
return this.extInfo;
}
public void setExtInfo(String extInfo) {
this.extInfo = extInfo;
if(extInfo != null){
putQueryParameter("ExtInfo", extInfo);
}
}
public String getBizId() {
return this.bizId;
}
public void setBizId(String bizId) {
this.bizId = bizId;
if(bizId != null){
putQueryParameter("BizId", bizId);
}
}
public String getOperateType() {
return this.operateType;
}
public void setOperateType(String operateType) {
this.operateType = operateType;
if(operateType != null){
putQueryParameter("OperateType", operateType);
}
}
@Override
public Class<OperateProduceForPartnerResponse> getResponseClass() {
return OperateProduceForPartnerResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model/v20200306/OperateProduceForPartnerResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.companyreg.model.v20200306;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.companyreg.transform.v20200306.OperateProduceForPartnerResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class OperateProduceForPartnerResponse extends AcsResponse {
private String errorMsg;
private String requestId;
private String errorCode;
private Boolean success;
public String getErrorMsg() {
return this.errorMsg;
}
public void setErrorMsg(String errorMsg) {
this.errorMsg = errorMsg;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getErrorCode() {
return this.errorCode;
}
public void setErrorCode(String errorCode) {
this.errorCode = errorCode;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
@Override
public OperateProduceForPartnerResponse getInstance(UnmarshallerContext context) {
return OperateProduceForPartnerResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model/v20200306/PutMeasureDataRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.companyreg.model.v20200306;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.companyreg.Endpoint;
/**
* @author auto create
* @version
*/
public class PutMeasureDataRequest extends RpcAcsRequest<PutMeasureDataResponse> {
private String data;
private String endTime;
private String startTime;
private String bizType;
private String dataType;
public PutMeasureDataRequest() {
super("companyreg", "2020-03-06", "PutMeasureData", "companyreg");
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 getData() {
return this.data;
}
public void setData(String data) {
this.data = data;
if(data != null){
putBodyParameter("Data", data);
}
}
public String getEndTime() {
return this.endTime;
}
public void setEndTime(String endTime) {
this.endTime = endTime;
if(endTime != null){
putBodyParameter("EndTime", endTime);
}
}
public String getStartTime() {
return this.startTime;
}
public void setStartTime(String startTime) {
this.startTime = startTime;
if(startTime != null){
putBodyParameter("StartTime", startTime);
}
}
public String getBizType() {
return this.bizType;
}
public void setBizType(String bizType) {
this.bizType = bizType;
if(bizType != null){
putBodyParameter("BizType", bizType);
}
}
public String getDataType() {
return this.dataType;
}
public void setDataType(String dataType) {
this.dataType = dataType;
if(dataType != null){
putBodyParameter("DataType", dataType);
}
}
@Override
public Class<PutMeasureDataResponse> getResponseClass() {
return PutMeasureDataResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model/v20200306/PutMeasureDataResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.companyreg.model.v20200306;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.companyreg.transform.v20200306.PutMeasureDataResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class PutMeasureDataResponse extends AcsResponse {
private Boolean data;
private String requestId;
public Boolean getData() {
return this.data;
}
public void setData(Boolean data) {
this.data = data;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public PutMeasureDataResponse getInstance(UnmarshallerContext context) {
return PutMeasureDataResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model/v20200306/PutMeasureReadyFlagRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.companyreg.model.v20200306;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.companyreg.Endpoint;
/**
* @author auto create
* @version
*/
public class PutMeasureReadyFlagRequest extends RpcAcsRequest<PutMeasureReadyFlagResponse> {
private String readyFlag;
private String endTime;
private String startTime;
private String bizType;
private String dataType;
public PutMeasureReadyFlagRequest() {
super("companyreg", "2020-03-06", "PutMeasureReadyFlag", "companyreg");
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 getReadyFlag() {
return this.readyFlag;
}
public void setReadyFlag(String readyFlag) {
this.readyFlag = readyFlag;
if(readyFlag != null){
putQueryParameter("ReadyFlag", readyFlag);
}
}
public String getEndTime() {
return this.endTime;
}
public void setEndTime(String endTime) {
this.endTime = endTime;
if(endTime != null){
putQueryParameter("EndTime", endTime);
}
}
public String getStartTime() {
return this.startTime;
}
public void setStartTime(String startTime) {
this.startTime = startTime;
if(startTime != null){
putQueryParameter("StartTime", startTime);
}
}
public String getBizType() {
return this.bizType;
}
public void setBizType(String bizType) {
this.bizType = bizType;
if(bizType != null){
putQueryParameter("BizType", bizType);
}
}
public String getDataType() {
return this.dataType;
}
public void setDataType(String dataType) {
this.dataType = dataType;
if(dataType != null){
putQueryParameter("DataType", dataType);
}
}
@Override
public Class<PutMeasureReadyFlagResponse> getResponseClass() {
return PutMeasureReadyFlagResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model/v20200306/PutMeasureReadyFlagResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.companyreg.model.v20200306;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.companyreg.transform.v20200306.PutMeasureReadyFlagResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class PutMeasureReadyFlagResponse extends AcsResponse {
private Boolean data;
private String requestId;
public Boolean getData() {
return this.data;
}
public void setData(Boolean data) {
this.data = data;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public PutMeasureReadyFlagResponse getInstance(UnmarshallerContext context) {
return PutMeasureReadyFlagResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model/v20200306/QueryAvailableNumbersRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.companyreg.model.v20200306;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.companyreg.Endpoint;
/**
* @author auto create
* @version
*/
public class QueryAvailableNumbersRequest extends RpcAcsRequest<QueryAvailableNumbersResponse> {
private String bizType;
public QueryAvailableNumbersRequest() {
super("companyreg", "2020-03-06", "QueryAvailableNumbers", "companyreg");
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 getBizType() {
return this.bizType;
}
public void setBizType(String bizType) {
this.bizType = bizType;
if(bizType != null){
putQueryParameter("BizType", bizType);
}
}
@Override
public Class<QueryAvailableNumbersResponse> getResponseClass() {
return QueryAvailableNumbersResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model/v20200306/QueryAvailableNumbersResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.companyreg.model.v20200306;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.companyreg.transform.v20200306.QueryAvailableNumbersResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class QueryAvailableNumbersResponse extends AcsResponse {
private String errorMsg;
private String requestId;
private String errorCode;
private Boolean success;
private List<String> data;
public String getErrorMsg() {
return this.errorMsg;
}
public void setErrorMsg(String errorMsg) {
this.errorMsg = errorMsg;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getErrorCode() {
return this.errorCode;
}
public void setErrorCode(String errorCode) {
this.errorCode = errorCode;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public List<String> getData() {
return this.data;
}
public void setData(List<String> data) {
this.data = data;
}
@Override
public QueryAvailableNumbersResponse getInstance(UnmarshallerContext context) {
return QueryAvailableNumbersResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model/v20200306/QueryBagRemainingRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.companyreg.model.v20200306;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.companyreg.Endpoint;
/**
* @author auto create
* @version
*/
public class QueryBagRemainingRequest extends RpcAcsRequest<QueryBagRemainingResponse> {
private String bizType;
public QueryBagRemainingRequest() {
super("companyreg", "2020-03-06", "QueryBagRemaining", "companyreg");
setMethod(MethodType.GET);
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 getBizType() {
return this.bizType;
}
public void setBizType(String bizType) {
this.bizType = bizType;
if(bizType != null){
putQueryParameter("BizType", bizType);
}
}
@Override
public Class<QueryBagRemainingResponse> getResponseClass() {
return QueryBagRemainingResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model/v20200306/QueryBagRemainingResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.companyreg.model.v20200306;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.companyreg.transform.v20200306.QueryBagRemainingResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class QueryBagRemainingResponse extends AcsResponse {
private Long data;
private String requestId;
public Long getData() {
return this.data;
}
public void setData(Long data) {
this.data = data;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public QueryBagRemainingResponse getInstance(UnmarshallerContext context) {
return QueryBagRemainingResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model/v20200306/QueryCommodityConfigRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.companyreg.model.v20200306;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.companyreg.Endpoint;
/**
* @author auto create
* @version
*/
public class QueryCommodityConfigRequest extends RpcAcsRequest<QueryCommodityConfigResponse> {
private String bizType;
private Boolean queryModule;
private String commodityCode;
public QueryCommodityConfigRequest() {
super("companyreg", "2020-03-06", "QueryCommodityConfig", "companyreg");
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 getBizType() {
return this.bizType;
}
public void setBizType(String bizType) {
this.bizType = bizType;
if(bizType != null){
putQueryParameter("BizType", bizType);
}
}
public Boolean getQueryModule() {
return this.queryModule;
}
public void setQueryModule(Boolean queryModule) {
this.queryModule = queryModule;
if(queryModule != null){
putQueryParameter("QueryModule", queryModule.toString());
}
}
public String getCommodityCode() {
return this.commodityCode;
}
public void setCommodityCode(String commodityCode) {
this.commodityCode = commodityCode;
if(commodityCode != null){
putQueryParameter("CommodityCode", commodityCode);
}
}
@Override
public Class<QueryCommodityConfigResponse> getResponseClass() {
return QueryCommodityConfigResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model/v20200306/QueryCommodityConfigResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.companyreg.model.v20200306;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.companyreg.transform.v20200306.QueryCommodityConfigResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class QueryCommodityConfigResponse extends AcsResponse {
private String requestId;
private Data data;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Data getData() {
return this.data;
}
public void setData(Data data) {
this.data = data;
}
public static class Data {
private Integer type;
private String commodityCode;
private String description;
private String protocolUrl;
private String iconUrl;
private String productLine;
private String startingPrice;
private List<CommodityModulesItem> commodityModules;
public Integer getType() {
return this.type;
}
public void setType(Integer type) {
this.type = type;
}
public String getCommodityCode() {
return this.commodityCode;
}
public void setCommodityCode(String commodityCode) {
this.commodityCode = commodityCode;
}
public String getDescription() {
return this.description;
}
public void setDescription(String description) {
this.description = description;
}
public String getProtocolUrl() {
return this.protocolUrl;
}
public void setProtocolUrl(String protocolUrl) {
this.protocolUrl = protocolUrl;
}
public String getIconUrl() {
return this.iconUrl;
}
public void setIconUrl(String iconUrl) {
this.iconUrl = iconUrl;
}
public String getProductLine() {
return this.productLine;
}
public void setProductLine(String productLine) {
this.productLine = productLine;
}
public String getStartingPrice() {
return this.startingPrice;
}
public void setStartingPrice(String startingPrice) {
this.startingPrice = startingPrice;
}
public List<CommodityModulesItem> getCommodityModules() {
return this.commodityModules;
}
public void setCommodityModules(List<CommodityModulesItem> commodityModules) {
this.commodityModules = commodityModules;
}
public static class CommodityModulesItem {
private String moduleName;
private String lxModuleCode;
private String moduleTip;
private String moduleDescription;
private String moduleUrl;
private String moduleCode;
private String moduleType;
private Integer sortNumber;
private String moduleValue;
public String getModuleName() {
return this.moduleName;
}
public void setModuleName(String moduleName) {
this.moduleName = moduleName;
}
public String getLxModuleCode() {
return this.lxModuleCode;
}
public void setLxModuleCode(String lxModuleCode) {
this.lxModuleCode = lxModuleCode;
}
public String getModuleTip() {
return this.moduleTip;
}
public void setModuleTip(String moduleTip) {
this.moduleTip = moduleTip;
}
public String getModuleDescription() {
return this.moduleDescription;
}
public void setModuleDescription(String moduleDescription) {
this.moduleDescription = moduleDescription;
}
public String getModuleUrl() {
return this.moduleUrl;
}
public void setModuleUrl(String moduleUrl) {
this.moduleUrl = moduleUrl;
}
public String getModuleCode() {
return this.moduleCode;
}
public void setModuleCode(String moduleCode) {
this.moduleCode = moduleCode;
}
public String getModuleType() {
return this.moduleType;
}
public void setModuleType(String moduleType) {
this.moduleType = moduleType;
}
public Integer getSortNumber() {
return this.sortNumber;
}
public void setSortNumber(Integer sortNumber) {
this.sortNumber = sortNumber;
}
public String getModuleValue() {
return this.moduleValue;
}
public void setModuleValue(String moduleValue) {
this.moduleValue = moduleValue;
}
}
}
@Override
public QueryCommodityConfigResponse getInstance(UnmarshallerContext context) {
return QueryCommodityConfigResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model/v20200306/QueryInstanceRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.companyreg.model.v20200306;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.companyreg.Endpoint;
/**
* @author auto create
* @version
*/
public class QueryInstanceRequest extends RpcAcsRequest<QueryInstanceResponse> {
private String bizType;
private String instanceId;
public QueryInstanceRequest() {
super("companyreg", "2020-03-06", "QueryInstance", "companyreg");
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 getBizType() {
return this.bizType;
}
public void setBizType(String bizType) {
this.bizType = bizType;
if(bizType != null){
putQueryParameter("BizType", bizType);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
@Override
public Class<QueryInstanceResponse> getResponseClass() {
return QueryInstanceResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model/v20200306/QueryInstanceResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.companyreg.model.v20200306;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.companyreg.transform.v20200306.QueryInstanceResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class QueryInstanceResponse extends AcsResponse {
private String data;
private String requestId;
public String getData() {
return this.data;
}
public void setData(String data) {
this.data = data;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public QueryInstanceResponse getInstance(UnmarshallerContext context) {
return QueryInstanceResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model/v20200306/QueryPartnerIntentionListRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.companyreg.model.v20200306;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.companyreg.Endpoint;
/**
* @author auto create
* @version
*/
public class QueryPartnerIntentionListRequest extends RpcAcsRequest<QueryPartnerIntentionListResponse> {
private String bizType;
private String bizId;
private Long pageSize;
private Long pageNum;
public QueryPartnerIntentionListRequest() {
super("companyreg", "2020-03-06", "QueryPartnerIntentionList", "companyreg");
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 getBizType() {
return this.bizType;
}
public void setBizType(String bizType) {
this.bizType = bizType;
if(bizType != null){
putQueryParameter("BizType", bizType);
}
}
public String getBizId() {
return this.bizId;
}
public void setBizId(String bizId) {
this.bizId = bizId;
if(bizId != null){
putQueryParameter("BizId", bizId);
}
}
public Long getPageSize() {
return this.pageSize;
}
public void setPageSize(Long pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putQueryParameter("PageSize", pageSize.toString());
}
}
public Long getPageNum() {
return this.pageNum;
}
public void setPageNum(Long pageNum) {
this.pageNum = pageNum;
if(pageNum != null){
putQueryParameter("PageNum", pageNum.toString());
}
}
@Override
public Class<QueryPartnerIntentionListResponse> getResponseClass() {
return QueryPartnerIntentionListResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model/v20200306/QueryPartnerIntentionListResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.companyreg.model.v20200306;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.companyreg.transform.v20200306.QueryPartnerIntentionListResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class QueryPartnerIntentionListResponse extends AcsResponse {
private String requestId;
private Long currentPageNum;
private Long totalPageNum;
private Long pageSize;
private Long totalItemNum;
private List<Intention> data;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Long getCurrentPageNum() {
return this.currentPageNum;
}
public void setCurrentPageNum(Long currentPageNum) {
this.currentPageNum = currentPageNum;
}
public Long getTotalPageNum() {
return this.totalPageNum;
}
public void setTotalPageNum(Long totalPageNum) {
this.totalPageNum = totalPageNum;
}
public Long getPageSize() {
return this.pageSize;
}
public void setPageSize(Long pageSize) {
this.pageSize = pageSize;
}
public Long getTotalItemNum() {
return this.totalItemNum;
}
public void setTotalItemNum(Long totalItemNum) {
this.totalItemNum = totalItemNum;
}
public List<Intention> getData() {
return this.data;
}
public void setData(List<Intention> data) {
this.data = data;
}
public static class Intention {
private String bizId;
private String mobile;
private String bizType;
public String getBizId() {
return this.bizId;
}
public void setBizId(String bizId) {
this.bizId = bizId;
}
public String getMobile() {
return this.mobile;
}
public void setMobile(String mobile) {
this.mobile = mobile;
}
public String getBizType() {
return this.bizType;
}
public void setBizType(String bizType) {
this.bizType = bizType;
}
}
@Override
public QueryPartnerIntentionListResponse getInstance(UnmarshallerContext context) {
return QueryPartnerIntentionListResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model/v20200306/QueryPartnerProduceListRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.companyreg.model.v20200306;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.companyreg.Endpoint;
/**
* @author auto create
* @version
*/
public class QueryPartnerProduceListRequest extends RpcAcsRequest<QueryPartnerProduceListResponse> {
private String bizType;
private String bizId;
private Long pageSize;
private Long pageNum;
public QueryPartnerProduceListRequest() {
super("companyreg", "2020-03-06", "QueryPartnerProduceList", "companyreg");
setMethod(MethodType.GET);
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 getBizType() {
return this.bizType;
}
public void setBizType(String bizType) {
this.bizType = bizType;
if(bizType != null){
putQueryParameter("BizType", bizType);
}
}
public String getBizId() {
return this.bizId;
}
public void setBizId(String bizId) {
this.bizId = bizId;
if(bizId != null){
putQueryParameter("BizId", bizId);
}
}
public Long getPageSize() {
return this.pageSize;
}
public void setPageSize(Long pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putQueryParameter("PageSize", pageSize.toString());
}
}
public Long getPageNum() {
return this.pageNum;
}
public void setPageNum(Long pageNum) {
this.pageNum = pageNum;
if(pageNum != null){
putQueryParameter("PageNum", pageNum.toString());
}
}
@Override
public Class<QueryPartnerProduceListResponse> getResponseClass() {
return QueryPartnerProduceListResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model/v20200306/QueryPartnerProduceListResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.companyreg.model.v20200306;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.companyreg.transform.v20200306.QueryPartnerProduceListResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class QueryPartnerProduceListResponse extends AcsResponse {
private String requestId;
private Long currentPageNum;
private Long totalPageNum;
private Long pageSize;
private Long totalItemNum;
private List<Produce> data;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Long getCurrentPageNum() {
return this.currentPageNum;
}
public void setCurrentPageNum(Long currentPageNum) {
this.currentPageNum = currentPageNum;
}
public Long getTotalPageNum() {
return this.totalPageNum;
}
public void setTotalPageNum(Long totalPageNum) {
this.totalPageNum = totalPageNum;
}
public Long getPageSize() {
return this.pageSize;
}
public void setPageSize(Long pageSize) {
this.pageSize = pageSize;
}
public Long getTotalItemNum() {
return this.totalItemNum;
}
public void setTotalItemNum(Long totalItemNum) {
this.totalItemNum = totalItemNum;
}
public List<Produce> getData() {
return this.data;
}
public void setData(List<Produce> data) {
this.data = data;
}
public static class Produce {
private String bizId;
private String bizType;
private String mobile;
public String getBizId() {
return this.bizId;
}
public void setBizId(String bizId) {
this.bizId = bizId;
}
public String getBizType() {
return this.bizType;
}
public void setBizType(String bizType) {
this.bizType = bizType;
}
public String getMobile() {
return this.mobile;
}
public void setMobile(String mobile) {
this.mobile = mobile;
}
}
@Override
public QueryPartnerProduceListResponse getInstance(UnmarshallerContext context) {
return QueryPartnerProduceListResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model/v20200306/QueryUserNeedAuthRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.companyreg.model.v20200306;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.companyreg.Endpoint;
/**
* @author auto create
* @version
*/
public class QueryUserNeedAuthRequest extends RpcAcsRequest<QueryUserNeedAuthResponse> {
public QueryUserNeedAuthRequest() {
super("companyreg", "2020-03-06", "QueryUserNeedAuth", "companyreg");
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) {}
}
@Override
public Class<QueryUserNeedAuthResponse> getResponseClass() {
return QueryUserNeedAuthResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model/v20200306/QueryUserNeedAuthResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.companyreg.model.v20200306;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.companyreg.transform.v20200306.QueryUserNeedAuthResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class QueryUserNeedAuthResponse extends AcsResponse {
private String requestId;
private Boolean success;
private Boolean needAuth;
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 Boolean getNeedAuth() {
return this.needAuth;
}
public void setNeedAuth(Boolean needAuth) {
this.needAuth = needAuth;
}
@Override
public QueryUserNeedAuthResponse getInstance(UnmarshallerContext context) {
return QueryUserNeedAuthResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model/v20200306/RecordPostBackRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.companyreg.model.v20200306;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.companyreg.Endpoint;
/**
* @author auto create
* @version
*/
public class RecordPostBackRequest extends RpcAcsRequest<RecordPostBackResponse> {
private String entityKey;
private String content;
private String bizType;
private String bizId;
private String contactor;
public RecordPostBackRequest() {
super("companyreg", "2020-03-06", "RecordPostBack", "companyreg");
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 getEntityKey() {
return this.entityKey;
}
public void setEntityKey(String entityKey) {
this.entityKey = entityKey;
if(entityKey != null){
putQueryParameter("entityKey", entityKey);
}
}
public String getContent() {
return this.content;
}
public void setContent(String content) {
this.content = content;
if(content != null){
putQueryParameter("content", content);
}
}
public String getBizType() {
return this.bizType;
}
public void setBizType(String bizType) {
this.bizType = bizType;
if(bizType != null){
putQueryParameter("bizType", bizType);
}
}
public String getBizId() {
return this.bizId;
}
public void setBizId(String bizId) {
this.bizId = bizId;
if(bizId != null){
putQueryParameter("bizId", bizId);
}
}
public String getContactor() {
return this.contactor;
}
public void setContactor(String contactor) {
this.contactor = contactor;
if(contactor != null){
putQueryParameter("contactor", contactor);
}
}
@Override
public Class<RecordPostBackResponse> getResponseClass() {
return RecordPostBackResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model/v20200306/RecordPostBackResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.companyreg.model.v20200306;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.companyreg.transform.v20200306.RecordPostBackResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class RecordPostBackResponse extends AcsResponse {
private String requestId;
private Integer httpStatusCode;
private String dynamicCode;
private String dynamicMessage;
private String errorMsg;
private String errorCode;
private Boolean success;
private Boolean module;
private Boolean allowRetry;
private String appName;
private List<String> errorArgs;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Integer getHttpStatusCode() {
return this.httpStatusCode;
}
public void setHttpStatusCode(Integer httpStatusCode) {
this.httpStatusCode = httpStatusCode;
}
public String getDynamicCode() {
return this.dynamicCode;
}
public void setDynamicCode(String dynamicCode) {
this.dynamicCode = dynamicCode;
}
public String getDynamicMessage() {
return this.dynamicMessage;
}
public void setDynamicMessage(String dynamicMessage) {
this.dynamicMessage = dynamicMessage;
}
public String getErrorMsg() {
return this.errorMsg;
}
public void setErrorMsg(String errorMsg) {
this.errorMsg = errorMsg;
}
public String getErrorCode() {
return this.errorCode;
}
public void setErrorCode(String errorCode) {
this.errorCode = errorCode;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public Boolean getModule() {
return this.module;
}
public void setModule(Boolean module) {
this.module = module;
}
public Boolean getAllowRetry() {
return this.allowRetry;
}
public void setAllowRetry(Boolean allowRetry) {
this.allowRetry = allowRetry;
}
public String getAppName() {
return this.appName;
}
public void setAppName(String appName) {
this.appName = appName;
}
public List<String> getErrorArgs() {
return this.errorArgs;
}
public void setErrorArgs(List<String> errorArgs) {
this.errorArgs = errorArgs;
}
@Override
public RecordPostBackResponse getInstance(UnmarshallerContext context) {
return RecordPostBackResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model/v20200306/RejectSolutionRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.companyreg.model.v20200306;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.companyreg.Endpoint;
/**
* @author auto create
* @version
*/
public class RejectSolutionRequest extends RpcAcsRequest<RejectSolutionResponse> {
private String note;
private String solutionBizId;
public RejectSolutionRequest() {
super("companyreg", "2020-03-06", "RejectSolution", "companyreg");
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 getNote() {
return this.note;
}
public void setNote(String note) {
this.note = note;
if(note != null){
putQueryParameter("Note", note);
}
}
public String getSolutionBizId() {
return this.solutionBizId;
}
public void setSolutionBizId(String solutionBizId) {
this.solutionBizId = solutionBizId;
if(solutionBizId != null){
putQueryParameter("SolutionBizId", solutionBizId);
}
}
@Override
public Class<RejectSolutionResponse> getResponseClass() {
return RejectSolutionResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model/v20200306/RejectSolutionResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.companyreg.model.v20200306;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.companyreg.transform.v20200306.RejectSolutionResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class RejectSolutionResponse extends AcsResponse {
private String errorMsg;
private String requestId;
private String errorCode;
private Boolean success;
public String getErrorMsg() {
return this.errorMsg;
}
public void setErrorMsg(String errorMsg) {
this.errorMsg = errorMsg;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getErrorCode() {
return this.errorCode;
}
public void setErrorCode(String errorCode) {
this.errorCode = errorCode;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
@Override
public RejectSolutionResponse getInstance(UnmarshallerContext context) {
return RejectSolutionResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model/v20200306/RejectUserSolutionRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.companyreg.model.v20200306;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.companyreg.Endpoint;
/**
* @author auto create
* @version
*/
public class RejectUserSolutionRequest extends RpcAcsRequest<RejectUserSolutionResponse> {
private String bizType;
private String note;
private String solutionBizId;
public RejectUserSolutionRequest() {
super("companyreg", "2020-03-06", "RejectUserSolution", "companyreg");
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 getBizType() {
return this.bizType;
}
public void setBizType(String bizType) {
this.bizType = bizType;
if(bizType != null){
putQueryParameter("BizType", bizType);
}
}
public String getNote() {
return this.note;
}
public void setNote(String note) {
this.note = note;
if(note != null){
putQueryParameter("Note", note);
}
}
public String getSolutionBizId() {
return this.solutionBizId;
}
public void setSolutionBizId(String solutionBizId) {
this.solutionBizId = solutionBizId;
if(solutionBizId != null){
putQueryParameter("SolutionBizId", solutionBizId);
}
}
@Override
public Class<RejectUserSolutionResponse> getResponseClass() {
return RejectUserSolutionResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model/v20200306/RejectUserSolutionResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.companyreg.model.v20200306;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.companyreg.transform.v20200306.RejectUserSolutionResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class RejectUserSolutionResponse extends AcsResponse {
private String errorMsg;
private String requestId;
private String errorCode;
private Boolean success;
public String getErrorMsg() {
return this.errorMsg;
}
public void setErrorMsg(String errorMsg) {
this.errorMsg = errorMsg;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getErrorCode() {
return this.errorCode;
}
public void setErrorCode(String errorCode) {
this.errorCode = errorCode;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
@Override
public RejectUserSolutionResponse getInstance(UnmarshallerContext context) {
return RejectUserSolutionResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model/v20200306/ReleaseProduceAuthorizationRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.companyreg.model.v20200306;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.companyreg.Endpoint;
/**
* @author auto create
* @version
*/
public class ReleaseProduceAuthorizationRequest extends RpcAcsRequest<ReleaseProduceAuthorizationResponse> {
private String bizType;
private String authorizedUserId;
private String bizId;
public ReleaseProduceAuthorizationRequest() {
super("companyreg", "2020-03-06", "ReleaseProduceAuthorization", "companyreg");
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 getBizType() {
return this.bizType;
}
public void setBizType(String bizType) {
this.bizType = bizType;
if(bizType != null){
putBodyParameter("BizType", bizType);
}
}
public String getAuthorizedUserId() {
return this.authorizedUserId;
}
public void setAuthorizedUserId(String authorizedUserId) {
this.authorizedUserId = authorizedUserId;
if(authorizedUserId != null){
putBodyParameter("AuthorizedUserId", authorizedUserId);
}
}
public String getBizId() {
return this.bizId;
}
public void setBizId(String bizId) {
this.bizId = bizId;
if(bizId != null){
putBodyParameter("BizId", bizId);
}
}
@Override
public Class<ReleaseProduceAuthorizationResponse> getResponseClass() {
return ReleaseProduceAuthorizationResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model/v20200306/ReleaseProduceAuthorizationResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.companyreg.model.v20200306;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.companyreg.transform.v20200306.ReleaseProduceAuthorizationResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ReleaseProduceAuthorizationResponse extends AcsResponse {
private String errorMsg;
private String requestId;
private String errorCode;
private Boolean success;
public String getErrorMsg() {
return this.errorMsg;
}
public void setErrorMsg(String errorMsg) {
this.errorMsg = errorMsg;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getErrorCode() {
return this.errorCode;
}
public void setErrorCode(String errorCode) {
this.errorCode = errorCode;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
@Override
public ReleaseProduceAuthorizationResponse getInstance(UnmarshallerContext context) {
return ReleaseProduceAuthorizationResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model/v20200306/StartBackToBackCallRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.companyreg.model.v20200306;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.companyreg.Endpoint;
/**
* @author auto create
* @version
*/
public class StartBackToBackCallRequest extends RpcAcsRequest<StartBackToBackCallResponse> {
private String callCenterNumber;
private String mobileKey;
private String bizType;
private String caller;
private Long skillType;
private String bizId;
public StartBackToBackCallRequest() {
super("companyreg", "2020-03-06", "StartBackToBackCall", "companyreg");
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 getCallCenterNumber() {
return this.callCenterNumber;
}
public void setCallCenterNumber(String callCenterNumber) {
this.callCenterNumber = callCenterNumber;
if(callCenterNumber != null){
putQueryParameter("CallCenterNumber", callCenterNumber);
}
}
public String getMobileKey() {
return this.mobileKey;
}
public void setMobileKey(String mobileKey) {
this.mobileKey = mobileKey;
if(mobileKey != null){
putQueryParameter("MobileKey", mobileKey);
}
}
public String getBizType() {
return this.bizType;
}
public void setBizType(String bizType) {
this.bizType = bizType;
if(bizType != null){
putQueryParameter("BizType", bizType);
}
}
public String getCaller() {
return this.caller;
}
public void setCaller(String caller) {
this.caller = caller;
if(caller != null){
putQueryParameter("Caller", caller);
}
}
public Long getSkillType() {
return this.skillType;
}
public void setSkillType(Long skillType) {
this.skillType = skillType;
if(skillType != null){
putQueryParameter("SkillType", skillType.toString());
}
}
public String getBizId() {
return this.bizId;
}
public void setBizId(String bizId) {
this.bizId = bizId;
if(bizId != null){
putQueryParameter("BizId", bizId);
}
}
@Override
public Class<StartBackToBackCallResponse> getResponseClass() {
return StartBackToBackCallResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model/v20200306/StartBackToBackCallResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.companyreg.model.v20200306;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.companyreg.transform.v20200306.StartBackToBackCallResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class StartBackToBackCallResponse extends AcsResponse {
private String errorMsg;
private String requestId;
private String errorCode;
private Boolean success;
private Boolean data;
public String getErrorMsg() {
return this.errorMsg;
}
public void setErrorMsg(String errorMsg) {
this.errorMsg = errorMsg;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getErrorCode() {
return this.errorCode;
}
public void setErrorCode(String errorCode) {
this.errorCode = errorCode;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public Boolean getData() {
return this.data;
}
public void setData(Boolean data) {
this.data = data;
}
@Override
public StartBackToBackCallResponse getInstance(UnmarshallerContext context) {
return StartBackToBackCallResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model/v20200306/SubmitIntentionNoteRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.companyreg.model.v20200306;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.companyreg.Endpoint;
/**
* @author auto create
* @version
*/
public class SubmitIntentionNoteRequest extends RpcAcsRequest<SubmitIntentionNoteResponse> {
private String note;
private String intentionBizId;
public SubmitIntentionNoteRequest() {
super("companyreg", "2020-03-06", "SubmitIntentionNote", "companyreg");
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 getNote() {
return this.note;
}
public void setNote(String note) {
this.note = note;
if(note != null){
putQueryParameter("Note", note);
}
}
public String getIntentionBizId() {
return this.intentionBizId;
}
public void setIntentionBizId(String intentionBizId) {
this.intentionBizId = intentionBizId;
if(intentionBizId != null){
putQueryParameter("IntentionBizId", intentionBizId);
}
}
@Override
public Class<SubmitIntentionNoteResponse> getResponseClass() {
return SubmitIntentionNoteResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model/v20200306/SubmitIntentionNoteResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.companyreg.model.v20200306;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.companyreg.transform.v20200306.SubmitIntentionNoteResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class SubmitIntentionNoteResponse extends AcsResponse {
private String errorMsg;
private String requestId;
private String errorCode;
private Boolean success;
public String getErrorMsg() {
return this.errorMsg;
}
public void setErrorMsg(String errorMsg) {
this.errorMsg = errorMsg;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getErrorCode() {
return this.errorCode;
}
public void setErrorCode(String errorCode) {
this.errorCode = errorCode;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
@Override
public SubmitIntentionNoteResponse getInstance(UnmarshallerContext context) {
return SubmitIntentionNoteResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model/v20200306/SubmitSolutionRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.companyreg.model.v20200306;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.companyreg.Endpoint;
/**
* @author auto create
* @version
*/
public class SubmitSolutionRequest extends RpcAcsRequest<SubmitSolutionResponse> {
private String bizType;
private String solution;
private String intentionBizId;
private String userId;
public SubmitSolutionRequest() {
super("companyreg", "2020-03-06", "SubmitSolution", "companyreg");
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 getBizType() {
return this.bizType;
}
public void setBizType(String bizType) {
this.bizType = bizType;
if(bizType != null){
putQueryParameter("BizType", bizType);
}
}
public String getSolution() {
return this.solution;
}
public void setSolution(String solution) {
this.solution = solution;
if(solution != null){
putQueryParameter("Solution", solution);
}
}
public String getIntentionBizId() {
return this.intentionBizId;
}
public void setIntentionBizId(String intentionBizId) {
this.intentionBizId = intentionBizId;
if(intentionBizId != null){
putQueryParameter("IntentionBizId", intentionBizId);
}
}
public String getUserId() {
return this.userId;
}
public void setUserId(String userId) {
this.userId = userId;
if(userId != null){
putQueryParameter("UserId", userId);
}
}
@Override
public Class<SubmitSolutionResponse> getResponseClass() {
return SubmitSolutionResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model/v20200306/SubmitSolutionResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.companyreg.model.v20200306;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.companyreg.transform.v20200306.SubmitSolutionResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class SubmitSolutionResponse extends AcsResponse {
private String solutionBizId;
private String requestId;
private Boolean success;
private String errorCode;
private String errorMsg;
private String confirmUrl;
public String getSolutionBizId() {
return this.solutionBizId;
}
public void setSolutionBizId(String solutionBizId) {
this.solutionBizId = solutionBizId;
}
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 getErrorCode() {
return this.errorCode;
}
public void setErrorCode(String errorCode) {
this.errorCode = errorCode;
}
public String getErrorMsg() {
return this.errorMsg;
}
public void setErrorMsg(String errorMsg) {
this.errorMsg = errorMsg;
}
public String getConfirmUrl() {
return this.confirmUrl;
}
public void setConfirmUrl(String confirmUrl) {
this.confirmUrl = confirmUrl;
}
@Override
public SubmitSolutionResponse getInstance(UnmarshallerContext context) {
return SubmitSolutionResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model/v20200306/TransferIntentionOwnerRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.companyreg.model.v20200306;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.companyreg.Endpoint;
/**
* @author auto create
* @version
*/
public class TransferIntentionOwnerRequest extends RpcAcsRequest<TransferIntentionOwnerResponse> {
private String bizType;
private String bizId;
private Integer personId;
private String remark;
public TransferIntentionOwnerRequest() {
super("companyreg", "2020-03-06", "TransferIntentionOwner", "companyreg");
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 getBizType() {
return this.bizType;
}
public void setBizType(String bizType) {
this.bizType = bizType;
if(bizType != null){
putQueryParameter("BizType", bizType);
}
}
public String getBizId() {
return this.bizId;
}
public void setBizId(String bizId) {
this.bizId = bizId;
if(bizId != null){
putQueryParameter("BizId", bizId);
}
}
public Integer getPersonId() {
return this.personId;
}
public void setPersonId(Integer personId) {
this.personId = personId;
if(personId != null){
putQueryParameter("PersonId", personId.toString());
}
}
public String getRemark() {
return this.remark;
}
public void setRemark(String remark) {
this.remark = remark;
if(remark != null){
putQueryParameter("Remark", remark);
}
}
@Override
public Class<TransferIntentionOwnerResponse> getResponseClass() {
return TransferIntentionOwnerResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model/v20200306/TransferIntentionOwnerResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.companyreg.model.v20200306;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.companyreg.transform.v20200306.TransferIntentionOwnerResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class TransferIntentionOwnerResponse extends AcsResponse {
private String errorMsg;
private String requestId;
private String errorCode;
private Boolean success;
private Boolean data;
public String getErrorMsg() {
return this.errorMsg;
}
public void setErrorMsg(String errorMsg) {
this.errorMsg = errorMsg;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getErrorCode() {
return this.errorCode;
}
public void setErrorCode(String errorCode) {
this.errorCode = errorCode;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public Boolean getData() {
return this.data;
}
public void setData(Boolean data) {
this.data = data;
}
@Override
public TransferIntentionOwnerResponse getInstance(UnmarshallerContext context) {
return TransferIntentionOwnerResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model/v20200306/TransferProduceOwnerRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.companyreg.model.v20200306;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.companyreg.Endpoint;
/**
* @author auto create
* @version
*/
public class TransferProduceOwnerRequest extends RpcAcsRequest<TransferProduceOwnerResponse> {
private String bizType;
private String bizId;
private Integer personId;
private String remark;
public TransferProduceOwnerRequest() {
super("companyreg", "2020-03-06", "TransferProduceOwner", "companyreg");
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 getBizType() {
return this.bizType;
}
public void setBizType(String bizType) {
this.bizType = bizType;
if(bizType != null){
putQueryParameter("BizType", bizType);
}
}
public String getBizId() {
return this.bizId;
}
public void setBizId(String bizId) {
this.bizId = bizId;
if(bizId != null){
putQueryParameter("BizId", bizId);
}
}
public Integer getPersonId() {
return this.personId;
}
public void setPersonId(Integer personId) {
this.personId = personId;
if(personId != null){
putQueryParameter("PersonId", personId.toString());
}
}
public String getRemark() {
return this.remark;
}
public void setRemark(String remark) {
this.remark = remark;
if(remark != null){
putQueryParameter("Remark", remark);
}
}
@Override
public Class<TransferProduceOwnerResponse> getResponseClass() {
return TransferProduceOwnerResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/model/v20200306/TransferProduceOwnerResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.companyreg.model.v20200306;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.companyreg.transform.v20200306.TransferProduceOwnerResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class TransferProduceOwnerResponse extends AcsResponse {
private String errorMsg;
private String requestId;
private String errorCode;
private Boolean success;
private Boolean data;
public String getErrorMsg() {
return this.errorMsg;
}
public void setErrorMsg(String errorMsg) {
this.errorMsg = errorMsg;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getErrorCode() {
return this.errorCode;
}
public void setErrorCode(String errorCode) {
this.errorCode = errorCode;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public Boolean getData() {
return this.data;
}
public void setData(Boolean data) {
this.data = data;
}
@Override
public TransferProduceOwnerResponse getInstance(UnmarshallerContext context) {
return TransferProduceOwnerResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/transform
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/transform/v20200306/BindProduceAuthorizationResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.companyreg.transform.v20200306;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.companyreg.model.v20200306.BindProduceAuthorizationResponse;
import com.aliyuncs.companyreg.model.v20200306.BindProduceAuthorizationResponse.Data;
import com.aliyuncs.companyreg.model.v20200306.BindProduceAuthorizationResponse.Data.AuthorizedUserListItem;
import com.aliyuncs.transform.UnmarshallerContext;
public class BindProduceAuthorizationResponseUnmarshaller {
public static BindProduceAuthorizationResponse unmarshall(BindProduceAuthorizationResponse bindProduceAuthorizationResponse, UnmarshallerContext _ctx) {
bindProduceAuthorizationResponse.setRequestId(_ctx.stringValue("BindProduceAuthorizationResponse.RequestId"));
bindProduceAuthorizationResponse.setErrorMsg(_ctx.stringValue("BindProduceAuthorizationResponse.ErrorMsg"));
bindProduceAuthorizationResponse.setErrorCode(_ctx.stringValue("BindProduceAuthorizationResponse.ErrorCode"));
Data data = new Data();
data.setMessage(_ctx.stringValue("BindProduceAuthorizationResponse.Data.Message"));
data.setSuccess(_ctx.booleanValue("BindProduceAuthorizationResponse.Data.Success"));
List<AuthorizedUserListItem> authorizedUserList = new ArrayList<AuthorizedUserListItem>();
for (int i = 0; i < _ctx.lengthValue("BindProduceAuthorizationResponse.Data.AuthorizedUserList.Length"); i++) {
AuthorizedUserListItem authorizedUserListItem = new AuthorizedUserListItem();
authorizedUserListItem.setUserName(_ctx.stringValue("BindProduceAuthorizationResponse.Data.AuthorizedUserList["+ i +"].UserName"));
authorizedUserListItem.setUserId(_ctx.stringValue("BindProduceAuthorizationResponse.Data.AuthorizedUserList["+ i +"].UserId"));
authorizedUserListItem.setAccountValidType(_ctx.integerValue("BindProduceAuthorizationResponse.Data.AuthorizedUserList["+ i +"].AccountValidType"));
authorizedUserList.add(authorizedUserListItem);
}
data.setAuthorizedUserList(authorizedUserList);
bindProduceAuthorizationResponse.setData(data);
return bindProduceAuthorizationResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/transform
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/transform/v20200306/CloseIntentionForPartnerResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.companyreg.transform.v20200306;
import com.aliyuncs.companyreg.model.v20200306.CloseIntentionForPartnerResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class CloseIntentionForPartnerResponseUnmarshaller {
public static CloseIntentionForPartnerResponse unmarshall(CloseIntentionForPartnerResponse closeIntentionForPartnerResponse, UnmarshallerContext _ctx) {
closeIntentionForPartnerResponse.setRequestId(_ctx.stringValue("CloseIntentionForPartnerResponse.RequestId"));
closeIntentionForPartnerResponse.setErrorMsg(_ctx.stringValue("CloseIntentionForPartnerResponse.ErrorMsg"));
closeIntentionForPartnerResponse.setSuccess(_ctx.booleanValue("CloseIntentionForPartnerResponse.Success"));
closeIntentionForPartnerResponse.setErrorCode(_ctx.stringValue("CloseIntentionForPartnerResponse.ErrorCode"));
return closeIntentionForPartnerResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/transform
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/transform/v20200306/CloseUserIntentionResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.companyreg.transform.v20200306;
import com.aliyuncs.companyreg.model.v20200306.CloseUserIntentionResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class CloseUserIntentionResponseUnmarshaller {
public static CloseUserIntentionResponse unmarshall(CloseUserIntentionResponse closeUserIntentionResponse, UnmarshallerContext _ctx) {
closeUserIntentionResponse.setRequestId(_ctx.stringValue("CloseUserIntentionResponse.RequestId"));
closeUserIntentionResponse.setErrorMsg(_ctx.stringValue("CloseUserIntentionResponse.ErrorMsg"));
closeUserIntentionResponse.setErrorCode(_ctx.stringValue("CloseUserIntentionResponse.ErrorCode"));
closeUserIntentionResponse.setSuccess(_ctx.booleanValue("CloseUserIntentionResponse.Success"));
return closeUserIntentionResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/transform
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/transform/v20200306/CreateBusinessOpportunityResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.companyreg.transform.v20200306;
import com.aliyuncs.companyreg.model.v20200306.CreateBusinessOpportunityResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class CreateBusinessOpportunityResponseUnmarshaller {
public static CreateBusinessOpportunityResponse unmarshall(CreateBusinessOpportunityResponse createBusinessOpportunityResponse, UnmarshallerContext _ctx) {
createBusinessOpportunityResponse.setRequestId(_ctx.stringValue("CreateBusinessOpportunityResponse.RequestId"));
createBusinessOpportunityResponse.setErrorMessage(_ctx.stringValue("CreateBusinessOpportunityResponse.ErrorMessage"));
createBusinessOpportunityResponse.setErrorCode(_ctx.stringValue("CreateBusinessOpportunityResponse.ErrorCode"));
createBusinessOpportunityResponse.setSuccess(_ctx.booleanValue("CreateBusinessOpportunityResponse.Success"));
return createBusinessOpportunityResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/transform
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/transform/v20200306/CreateProduceForPartnerResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.companyreg.transform.v20200306;
import com.aliyuncs.companyreg.model.v20200306.CreateProduceForPartnerResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class CreateProduceForPartnerResponseUnmarshaller {
public static CreateProduceForPartnerResponse unmarshall(CreateProduceForPartnerResponse createProduceForPartnerResponse, UnmarshallerContext _ctx) {
createProduceForPartnerResponse.setRequestId(_ctx.stringValue("CreateProduceForPartnerResponse.RequestId"));
createProduceForPartnerResponse.setBizId(_ctx.stringValue("CreateProduceForPartnerResponse.BizId"));
createProduceForPartnerResponse.setErrorMsg(_ctx.stringValue("CreateProduceForPartnerResponse.ErrorMsg"));
createProduceForPartnerResponse.setErrorCode(_ctx.stringValue("CreateProduceForPartnerResponse.ErrorCode"));
createProduceForPartnerResponse.setSuccess(_ctx.booleanValue("CreateProduceForPartnerResponse.Success"));
return createProduceForPartnerResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/transform
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/transform/v20200306/DescribePartnerConfigResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.companyreg.transform.v20200306;
import com.aliyuncs.companyreg.model.v20200306.DescribePartnerConfigResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class DescribePartnerConfigResponseUnmarshaller {
public static DescribePartnerConfigResponse unmarshall(DescribePartnerConfigResponse describePartnerConfigResponse, UnmarshallerContext _ctx) {
describePartnerConfigResponse.setRequestId(_ctx.stringValue("DescribePartnerConfigResponse.RequestId"));
describePartnerConfigResponse.setPartnerName(_ctx.stringValue("DescribePartnerConfigResponse.PartnerName"));
describePartnerConfigResponse.setPartnerCode(_ctx.stringValue("DescribePartnerConfigResponse.PartnerCode"));
describePartnerConfigResponse.setContact(_ctx.stringValue("DescribePartnerConfigResponse.Contact"));
return describePartnerConfigResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/transform
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/transform/v20200306/GenerateUploadFilePolicyResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.companyreg.transform.v20200306;
import com.aliyuncs.companyreg.model.v20200306.GenerateUploadFilePolicyResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class GenerateUploadFilePolicyResponseUnmarshaller {
public static GenerateUploadFilePolicyResponse unmarshall(GenerateUploadFilePolicyResponse generateUploadFilePolicyResponse, UnmarshallerContext _ctx) {
generateUploadFilePolicyResponse.setRequestId(_ctx.stringValue("GenerateUploadFilePolicyResponse.RequestId"));
generateUploadFilePolicyResponse.setSignature(_ctx.stringValue("GenerateUploadFilePolicyResponse.Signature"));
generateUploadFilePolicyResponse.setFileUrl(_ctx.stringValue("GenerateUploadFilePolicyResponse.FileUrl"));
generateUploadFilePolicyResponse.setHost(_ctx.stringValue("GenerateUploadFilePolicyResponse.Host"));
generateUploadFilePolicyResponse.setExpireTime(_ctx.stringValue("GenerateUploadFilePolicyResponse.ExpireTime"));
generateUploadFilePolicyResponse.setEncodedPolicy(_ctx.stringValue("GenerateUploadFilePolicyResponse.EncodedPolicy"));
generateUploadFilePolicyResponse.setFileDir(_ctx.stringValue("GenerateUploadFilePolicyResponse.FileDir"));
generateUploadFilePolicyResponse.setAccessId(_ctx.stringValue("GenerateUploadFilePolicyResponse.AccessId"));
return generateUploadFilePolicyResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/transform
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/transform/v20200306/GetAlipayUrlResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.companyreg.transform.v20200306;
import com.aliyuncs.companyreg.model.v20200306.GetAlipayUrlResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class GetAlipayUrlResponseUnmarshaller {
public static GetAlipayUrlResponse unmarshall(GetAlipayUrlResponse getAlipayUrlResponse, UnmarshallerContext _ctx) {
getAlipayUrlResponse.setRequestId(_ctx.stringValue("GetAlipayUrlResponse.RequestId"));
getAlipayUrlResponse.setData(_ctx.stringValue("GetAlipayUrlResponse.Data"));
return getAlipayUrlResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/transform
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/transform/v20200306/ListIntentionNoteResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.companyreg.transform.v20200306;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.companyreg.model.v20200306.ListIntentionNoteResponse;
import com.aliyuncs.companyreg.model.v20200306.ListIntentionNoteResponse.Note;
import com.aliyuncs.transform.UnmarshallerContext;
public class ListIntentionNoteResponseUnmarshaller {
public static ListIntentionNoteResponse unmarshall(ListIntentionNoteResponse listIntentionNoteResponse, UnmarshallerContext _ctx) {
listIntentionNoteResponse.setRequestId(_ctx.stringValue("ListIntentionNoteResponse.RequestId"));
listIntentionNoteResponse.setCurrentPageNum(_ctx.integerValue("ListIntentionNoteResponse.CurrentPageNum"));
listIntentionNoteResponse.setTotalPageNum(_ctx.integerValue("ListIntentionNoteResponse.TotalPageNum"));
listIntentionNoteResponse.setPageSize(_ctx.integerValue("ListIntentionNoteResponse.PageSize"));
listIntentionNoteResponse.setTotalItemNum(_ctx.integerValue("ListIntentionNoteResponse.TotalItemNum"));
List<Note> data = new ArrayList<Note>();
for (int i = 0; i < _ctx.lengthValue("ListIntentionNoteResponse.Data.Length"); i++) {
Note note = new Note();
note.setType(_ctx.stringValue("ListIntentionNoteResponse.Data["+ i +"].Type"));
note.setNote(_ctx.stringValue("ListIntentionNoteResponse.Data["+ i +"].Note"));
note.setSource(_ctx.integerValue("ListIntentionNoteResponse.Data["+ i +"].Source"));
note.setCreateTime(_ctx.stringValue("ListIntentionNoteResponse.Data["+ i +"].CreateTime"));
note.setIntentionBizId(_ctx.stringValue("ListIntentionNoteResponse.Data["+ i +"].IntentionBizId"));
data.add(note);
}
listIntentionNoteResponse.setData(data);
return listIntentionNoteResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/transform
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/transform/v20200306/ListProduceAuthorizationResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.companyreg.transform.v20200306;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.companyreg.model.v20200306.ListProduceAuthorizationResponse;
import com.aliyuncs.companyreg.model.v20200306.ListProduceAuthorizationResponse.ProduceAuthorizations;
import com.aliyuncs.transform.UnmarshallerContext;
public class ListProduceAuthorizationResponseUnmarshaller {
public static ListProduceAuthorizationResponse unmarshall(ListProduceAuthorizationResponse listProduceAuthorizationResponse, UnmarshallerContext _ctx) {
listProduceAuthorizationResponse.setRequestId(_ctx.stringValue("ListProduceAuthorizationResponse.RequestId"));
listProduceAuthorizationResponse.setSuccess(_ctx.booleanValue("ListProduceAuthorizationResponse.Success"));
listProduceAuthorizationResponse.setTotalItemNum(_ctx.integerValue("ListProduceAuthorizationResponse.TotalItemNum"));
listProduceAuthorizationResponse.setCurrentPageNum(_ctx.integerValue("ListProduceAuthorizationResponse.CurrentPageNum"));
listProduceAuthorizationResponse.setPageSize(_ctx.integerValue("ListProduceAuthorizationResponse.PageSize"));
listProduceAuthorizationResponse.setTotalPageNum(_ctx.integerValue("ListProduceAuthorizationResponse.TotalPageNum"));
List<ProduceAuthorizations> data = new ArrayList<ProduceAuthorizations>();
for (int i = 0; i < _ctx.lengthValue("ListProduceAuthorizationResponse.Data.Length"); i++) {
ProduceAuthorizations produceAuthorizations = new ProduceAuthorizations();
produceAuthorizations.setAuthorizedUserId(_ctx.stringValue("ListProduceAuthorizationResponse.Data["+ i +"].AuthorizedUserId"));
produceAuthorizations.setAuthorizedUserName(_ctx.stringValue("ListProduceAuthorizationResponse.Data["+ i +"].AuthorizedUserName"));
data.add(produceAuthorizations);
}
listProduceAuthorizationResponse.setData(data);
return listProduceAuthorizationResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/transform
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/transform/v20200306/ListUserDetailSolutionsResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.companyreg.transform.v20200306;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.companyreg.model.v20200306.ListUserDetailSolutionsResponse;
import com.aliyuncs.companyreg.model.v20200306.ListUserDetailSolutionsResponse.Solution;
import com.aliyuncs.transform.UnmarshallerContext;
public class ListUserDetailSolutionsResponseUnmarshaller {
public static ListUserDetailSolutionsResponse unmarshall(ListUserDetailSolutionsResponse listUserDetailSolutionsResponse, UnmarshallerContext _ctx) {
listUserDetailSolutionsResponse.setRequestId(_ctx.stringValue("ListUserDetailSolutionsResponse.RequestId"));
listUserDetailSolutionsResponse.setCurrentPageNum(_ctx.integerValue("ListUserDetailSolutionsResponse.CurrentPageNum"));
listUserDetailSolutionsResponse.setTotalPageNum(_ctx.integerValue("ListUserDetailSolutionsResponse.TotalPageNum"));
listUserDetailSolutionsResponse.setPageSize(_ctx.integerValue("ListUserDetailSolutionsResponse.PageSize"));
listUserDetailSolutionsResponse.setTotalItemNum(_ctx.integerValue("ListUserDetailSolutionsResponse.TotalItemNum"));
List<Solution> data = new ArrayList<Solution>();
for (int i = 0; i < _ctx.lengthValue("ListUserDetailSolutionsResponse.Data.Length"); i++) {
Solution solution = new Solution();
solution.setStatus(_ctx.integerValue("ListUserDetailSolutionsResponse.Data["+ i +"].Status"));
solution.setUpdateTime(_ctx.longValue("ListUserDetailSolutionsResponse.Data["+ i +"].UpdateTime"));
solution.setDeliveryOrderBizId(_ctx.stringValue("ListUserDetailSolutionsResponse.Data["+ i +"].DeliveryOrderBizId"));
solution.setCreateTime(_ctx.longValue("ListUserDetailSolutionsResponse.Data["+ i +"].CreateTime"));
solution.setUserId(_ctx.stringValue("ListUserDetailSolutionsResponse.Data["+ i +"].UserId"));
solution.setBizId(_ctx.stringValue("ListUserDetailSolutionsResponse.Data["+ i +"].BizId"));
solution.setPartnerCode(_ctx.stringValue("ListUserDetailSolutionsResponse.Data["+ i +"].PartnerCode"));
solution.setExtInfo(_ctx.stringValue("ListUserDetailSolutionsResponse.Data["+ i +"].ExtInfo"));
solution.setBizType(_ctx.stringValue("ListUserDetailSolutionsResponse.Data["+ i +"].BizType"));
solution.setIntentionBizId(_ctx.stringValue("ListUserDetailSolutionsResponse.Data["+ i +"].IntentionBizId"));
solution.setReason(_ctx.stringValue("ListUserDetailSolutionsResponse.Data["+ i +"].Reason"));
solution.setIntentionAssignBizId(_ctx.stringValue("ListUserDetailSolutionsResponse.Data["+ i +"].IntentionAssignBizId"));
data.add(solution);
}
listUserDetailSolutionsResponse.setData(data);
return listUserDetailSolutionsResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/transform
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/transform/v20200306/ListUserIntentionNotesResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.companyreg.transform.v20200306;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.companyreg.model.v20200306.ListUserIntentionNotesResponse;
import com.aliyuncs.companyreg.model.v20200306.ListUserIntentionNotesResponse.OpateLogs;
import com.aliyuncs.transform.UnmarshallerContext;
public class ListUserIntentionNotesResponseUnmarshaller {
public static ListUserIntentionNotesResponse unmarshall(ListUserIntentionNotesResponse listUserIntentionNotesResponse, UnmarshallerContext _ctx) {
listUserIntentionNotesResponse.setRequestId(_ctx.stringValue("ListUserIntentionNotesResponse.RequestId"));
listUserIntentionNotesResponse.setPageNum(_ctx.integerValue("ListUserIntentionNotesResponse.PageNum"));
listUserIntentionNotesResponse.setSuccess(_ctx.booleanValue("ListUserIntentionNotesResponse.Success"));
listUserIntentionNotesResponse.setTotalItemNum(_ctx.integerValue("ListUserIntentionNotesResponse.TotalItemNum"));
listUserIntentionNotesResponse.setPageSize(_ctx.integerValue("ListUserIntentionNotesResponse.PageSize"));
listUserIntentionNotesResponse.setTotalPageNum(_ctx.integerValue("ListUserIntentionNotesResponse.TotalPageNum"));
List<OpateLogs> data = new ArrayList<OpateLogs>();
for (int i = 0; i < _ctx.lengthValue("ListUserIntentionNotesResponse.Data.Length"); i++) {
OpateLogs opateLogs = new OpateLogs();
opateLogs.setNote(_ctx.stringValue("ListUserIntentionNotesResponse.Data["+ i +"].Note"));
opateLogs.setCreateTime(_ctx.stringValue("ListUserIntentionNotesResponse.Data["+ i +"].CreateTime"));
data.add(opateLogs);
}
listUserIntentionNotesResponse.setData(data);
return listUserIntentionNotesResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/transform
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/transform/v20200306/ListUserIntentionsResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.companyreg.transform.v20200306;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.companyreg.model.v20200306.ListUserIntentionsResponse;
import com.aliyuncs.companyreg.model.v20200306.ListUserIntentionsResponse.Intention;
import com.aliyuncs.transform.UnmarshallerContext;
public class ListUserIntentionsResponseUnmarshaller {
public static ListUserIntentionsResponse unmarshall(ListUserIntentionsResponse listUserIntentionsResponse, UnmarshallerContext _ctx) {
listUserIntentionsResponse.setRequestId(_ctx.stringValue("ListUserIntentionsResponse.RequestId"));
listUserIntentionsResponse.setCurrentPageNum(_ctx.integerValue("ListUserIntentionsResponse.CurrentPageNum"));
listUserIntentionsResponse.setTotalPageNum(_ctx.integerValue("ListUserIntentionsResponse.TotalPageNum"));
listUserIntentionsResponse.setPageSize(_ctx.integerValue("ListUserIntentionsResponse.PageSize"));
listUserIntentionsResponse.setTotalItemNum(_ctx.integerValue("ListUserIntentionsResponse.TotalItemNum"));
List<Intention> data = new ArrayList<Intention>();
for (int i = 0; i < _ctx.lengthValue("ListUserIntentionsResponse.Data.Length"); i++) {
Intention intention = new Intention();
intention.setStatus(_ctx.integerValue("ListUserIntentionsResponse.Data["+ i +"].Status"));
intention.setUpdateTime(_ctx.longValue("ListUserIntentionsResponse.Data["+ i +"].UpdateTime"));
intention.setDescription(_ctx.stringValue("ListUserIntentionsResponse.Data["+ i +"].Description"));
intention.setMobile(_ctx.stringValue("ListUserIntentionsResponse.Data["+ i +"].Mobile"));
intention.setCreateTime(_ctx.longValue("ListUserIntentionsResponse.Data["+ i +"].CreateTime"));
intention.setUserId(_ctx.stringValue("ListUserIntentionsResponse.Data["+ i +"].UserId"));
intention.setContactName(_ctx.stringValue("ListUserIntentionsResponse.Data["+ i +"].ContactName"));
intention.setBizId(_ctx.stringValue("ListUserIntentionsResponse.Data["+ i +"].BizId"));
intention.setArea(_ctx.stringValue("ListUserIntentionsResponse.Data["+ i +"].Area"));
intention.setReason(_ctx.stringValue("ListUserIntentionsResponse.Data["+ i +"].Reason"));
intention.setBizType(_ctx.stringValue("ListUserIntentionsResponse.Data["+ i +"].BizType"));
intention.setExt(_ctx.stringValue("ListUserIntentionsResponse.Data["+ i +"].Ext"));
data.add(intention);
}
listUserIntentionsResponse.setData(data);
return listUserIntentionsResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/transform
|
java-sources/com/aliyun/aliyun-java-sdk-companyreg/2.2.6/com/aliyuncs/companyreg/transform/v20200306/ListUserProduceOperateLogsResponseUnmarshaller.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.companyreg.transform.v20200306;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.companyreg.model.v20200306.ListUserProduceOperateLogsResponse;
import com.aliyuncs.companyreg.model.v20200306.ListUserProduceOperateLogsResponse.OpateLogs;
import com.aliyuncs.transform.UnmarshallerContext;
public class ListUserProduceOperateLogsResponseUnmarshaller {
public static ListUserProduceOperateLogsResponse unmarshall(ListUserProduceOperateLogsResponse listUserProduceOperateLogsResponse, UnmarshallerContext _ctx) {
listUserProduceOperateLogsResponse.setRequestId(_ctx.stringValue("ListUserProduceOperateLogsResponse.RequestId"));
listUserProduceOperateLogsResponse.setPageNum(_ctx.integerValue("ListUserProduceOperateLogsResponse.PageNum"));
listUserProduceOperateLogsResponse.setSuccess(_ctx.booleanValue("ListUserProduceOperateLogsResponse.Success"));
listUserProduceOperateLogsResponse.setTotalItemNum(_ctx.integerValue("ListUserProduceOperateLogsResponse.TotalItemNum"));
listUserProduceOperateLogsResponse.setPageSize(_ctx.integerValue("ListUserProduceOperateLogsResponse.PageSize"));
listUserProduceOperateLogsResponse.setTotalPageNum(_ctx.integerValue("ListUserProduceOperateLogsResponse.TotalPageNum"));
List<OpateLogs> data = new ArrayList<OpateLogs>();
for (int i = 0; i < _ctx.lengthValue("ListUserProduceOperateLogsResponse.Data.Length"); i++) {
OpateLogs opateLogs = new OpateLogs();
opateLogs.setOperateTime(_ctx.longValue("ListUserProduceOperateLogsResponse.Data["+ i +"].OperateTime"));
opateLogs.setOperateUserType(_ctx.stringValue("ListUserProduceOperateLogsResponse.Data["+ i +"].OperateUserType"));
opateLogs.setBizId(_ctx.stringValue("ListUserProduceOperateLogsResponse.Data["+ i +"].BizId"));
opateLogs.setOperateName(_ctx.stringValue("ListUserProduceOperateLogsResponse.Data["+ i +"].OperateName"));
opateLogs.setBizStatus(_ctx.integerValue("ListUserProduceOperateLogsResponse.Data["+ i +"].BizStatus"));
opateLogs.setToBizStatus(_ctx.integerValue("ListUserProduceOperateLogsResponse.Data["+ i +"].ToBizStatus"));
opateLogs.setBizType(_ctx.stringValue("ListUserProduceOperateLogsResponse.Data["+ i +"].BizType"));
opateLogs.setNote(_ctx.stringValue("ListUserProduceOperateLogsResponse.Data["+ i +"].Note"));
data.add(opateLogs);
}
listUserProduceOperateLogsResponse.setData(data);
return listUserProduceOperateLogsResponse;
}
}
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.