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

com.symphony.bdk.app.spring.auth.model.AppToken Maven / Gradle / Ivy

package com.symphony.bdk.app.spring.auth.model;

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

/**
 * App Token generated by the application.
 */

public record AppToken(String appToken) {

  @JsonCreator(mode = JsonCreator.Mode.PROPERTIES)
  public AppToken(@JsonProperty("appToken") String appToken) {
    this.appToken = appToken;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy