cn.authing.sdk.java.dto.GetAccessTokenByClientCredentialsDto Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of authing-java-sdk Show documentation
Show all versions of authing-java-sdk Show documentation
java backend sdk for authing
package cn.authing.sdk.java.dto;
import com.fasterxml.jackson.annotation.JsonProperty;
public class GetAccessTokenByClientCredentialsDto {
@JsonProperty("scope")
private String scope;
@JsonProperty("client_id")
private String clientId;
@JsonProperty("client_secret")
private String clientSecret;
@JsonProperty("grant_type")
private String grantType;
public String getScope() {
return scope;
}
public void setScope(String scope) {
this.scope = scope;
}
public String getClientId() {
return clientId;
}
public void setClientId(String clientId) {
this.clientId = clientId;
}
public String getClientSecret() {
return clientSecret;
}
public void setClientSecret(String clientSecret) {
this.clientSecret = clientSecret;
}
public String getGrantType() {
return grantType;
}
public void setGrantType(String grantType) {
this.grantType = grantType;
}
}