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

org.whispersystems.signalservice.internal.contacts.crypto.SignatureBodyEntity Maven / Gradle / Ivy

The newest version!
package org.whispersystems.signalservice.internal.contacts.crypto;

import com.fasterxml.jackson.annotation.JsonProperty;

public class SignatureBodyEntity {

  @JsonProperty
  private byte[] isvEnclaveQuoteBody;

  @JsonProperty
  private String isvEnclaveQuoteStatus;

  @JsonProperty
  private Long version;

  @JsonProperty
  private String timestamp;

  public byte[] getIsvEnclaveQuoteBody() {
    return isvEnclaveQuoteBody;
  }

  public String getIsvEnclaveQuoteStatus() {
    return isvEnclaveQuoteStatus;
  }

  public Long getVersion() {
    return version;
  }

  public String getTimestamp() {
    return timestamp;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy