com.larksuite.oapi.service.authen.v1.model.AuthenAccessTokenReqBody Maven / Gradle / Ivy
// Code generated by lark suite oapi sdk gen
package com.larksuite.oapi.service.authen.v1.model;
import com.google.gson.annotations.SerializedName;
public class AuthenAccessTokenReqBody {
@SerializedName("grant_type")
private String grantType;
@SerializedName("code")
private String code;
public String getGrantType() {
return this.grantType;
}
public void setGrantType(String grantType) {
this.grantType = grantType;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy