io.github.dft.zohocreator.model.authenticationapi.AccessTokenResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of zoho-creator Show documentation
Show all versions of zoho-creator Show documentation
zoho-creator API using JDK 11
The newest version!
package io.github.dft.zohocreator.model.authenticationapi;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.databind.PropertyNamingStrategies;
import com.fasterxml.jackson.databind.annotation.JsonNaming;
import lombok.Data;
@Data
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonIgnoreProperties(ignoreUnknown = true)
@JsonNaming(PropertyNamingStrategies.SnakeCaseStrategy.class)
public class AccessTokenResponse {
private String scope;
private String tokenType;
private Integer expiresIn;
private String apiDomain;
private String accessToken;
}