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

it.contactlab.hub.sdk.java.models.AbstractDisclaimer Maven / Gradle / Ivy

There is a newer version: 1.8.0
Show newest version
package it.contactlab.hub.sdk.java.models;

import org.immutables.value.Value;

import java.time.OffsetDateTime;
import java.util.Optional;

/**
 * Customer's consents information - part for legal acceptances.
 */
@Value.Immutable
@Value.Style(typeImmutable = "*")
public abstract class AbstractDisclaimer {

  /**
   * The date of acceptance of the disclaimer.
   */
  public abstract Optional date();

  /**
   * Version of disclaimer.
   */
  public abstract Optional version();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy