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

com.aiwiown.face.response.AppBizTokenResponse Maven / Gradle / Ivy

There is a newer version: 3.0.9
Show newest version
package com.aiwiown.face.response;

import com.aiwiown.face.ApiResponse;
import com.aiwiown.face.internal.mapping.ApiField;

/**
 * @ClassName : AppBizTokenResponse
 * @Description :
 * @Author : dbin0123
 * @Date: 2020-03-15 18:11
 */
public class AppBizTokenResponse extends ApiResponse {

    private static final long serialVersionUID = 1135090741679437098L;

    @ApiField("biz_token")
    private String bizToken;

    public String getBizToken() {
        return bizToken;
    }

    public void setBizToken(String bizToken) {
        this.bizToken = bizToken;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy