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

com.yoti.api.client.sandbox.profile.response.YotiTokenResponse Maven / Gradle / Ivy

The newest version!
package com.yoti.api.client.sandbox.profile.response;

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

public class YotiTokenResponse {

    private String token;

    @JsonCreator
    public YotiTokenResponse(@JsonProperty("token") String token) {
        this.token = token;
    }

    public String getToken() {
        return token;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy