All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.antgroup.antchain.openapi.insurance_saas.models.CancelClaimRequest Maven / Gradle / Ivy

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 CancelClaimRequest extends TeaModel {
    // OAuth模式下的授权token
    @NameInMap("auth_token")
    public String authToken;

    // 报案单编号(蚂蚁内部)
    @NameInMap("claim_notification_form_no_inner")
    @Validation(required = true)
    public String claimNotificationFormNoInner;

    // 报案撤销附加内容
    @NameInMap("biz_info")
    public String bizInfo;

    public static CancelClaimRequest build(java.util.Map map) throws Exception {
        CancelClaimRequest self = new CancelClaimRequest();
        return TeaModel.build(map, self);
    }

    public CancelClaimRequest setAuthToken(String authToken) {
        this.authToken = authToken;
        return this;
    }
    public String getAuthToken() {
        return this.authToken;
    }

    public CancelClaimRequest setClaimNotificationFormNoInner(String claimNotificationFormNoInner) {
        this.claimNotificationFormNoInner = claimNotificationFormNoInner;
        return this;
    }
    public String getClaimNotificationFormNoInner() {
        return this.claimNotificationFormNoInner;
    }

    public CancelClaimRequest setBizInfo(String bizInfo) {
        this.bizInfo = bizInfo;
        return this;
    }
    public String getBizInfo() {
        return this.bizInfo;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy