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

de.otto.edison.registry.security.OAuth2TokenResponse Maven / Gradle / Ivy

There is a newer version: 3.3.3
Show newest version
package de.otto.edison.registry.security;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;

@JsonIgnoreProperties(ignoreUnknown = true)
public record OAuth2TokenResponse(@JsonProperty(value = "access_token", required = true) String accessToken) {

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy