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

com.withabound.models.access_tokens.AccessTokenRequest Maven / Gradle / Ivy

Go to download

The Abound Java SDK provides convenient access to the Abound API from applications written in Java.

The newest version!
package com.withabound.models.access_tokens;

import java.util.Optional;
import lombok.Builder;
import lombok.Setter;

@Setter
@Builder
public class AccessTokenRequest {
  private String userId;
  private Long expirationTimestamp;

  public String getUserId() {
    return userId;
  }

  public Optional getExpirationTimestamp() {
    return Optional.ofNullable(expirationTimestamp);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy