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

com.dnastack.audit.model.TokenResponse Maven / Gradle / Ivy

package com.dnastack.audit.model;

import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;

/** OAuth access token response (https://tools.ietf.org/html/rfc6749#section-4.2.2) */
@Data
@NoArgsConstructor
@AllArgsConstructor
public class TokenResponse {

    @JsonProperty("access_token")
    private String accessToken;
    @JsonProperty("token_type")
    private String tokenType;
    @JsonProperty("expires_in")
    private long expiryInSeconds;
    @JsonProperty("scope")
    private String scope;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy