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

com.unzer.payment.AuthToken Maven / Gradle / Ivy

package com.unzer.payment;

import lombok.Getter;

@Getter
public class AuthToken implements Resource {
    @Override
    public String getId() {
        return null;
    }

    @Override
    public String getUrl() {
        return "/v1/auth/token";
    }

    private String accessToken;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy