com.antgroup.antchain.openapi.insurance_saas.models.QueryInquiryRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openapi-insurance_saas Show documentation
Show all versions of openapi-insurance_saas Show documentation
Ant Chain INSURANCE_SAAS SDK for Java
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.insurance_saas.models;
import com.aliyun.tea.*;
public class QueryInquiryRequest extends TeaModel {
// OAuth模式下的授权token
@NameInMap("auth_token")
public String authToken;
// 询价id
@NameInMap("inquiry_no_inner")
@Validation(required = true)
public String inquiryNoInner;
public static QueryInquiryRequest build(java.util.Map map) throws Exception {
QueryInquiryRequest self = new QueryInquiryRequest();
return TeaModel.build(map, self);
}
public QueryInquiryRequest setAuthToken(String authToken) {
this.authToken = authToken;
return this;
}
public String getAuthToken() {
return this.authToken;
}
public QueryInquiryRequest setInquiryNoInner(String inquiryNoInner) {
this.inquiryNoInner = inquiryNoInner;
return this;
}
public String getInquiryNoInner() {
return this.inquiryNoInner;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy