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

com.contrastsecurity.http.SecurityCheckResponse Maven / Gradle / Ivy

There is a newer version: 3.4.2
Show newest version
package com.contrastsecurity.http;

import com.contrastsecurity.models.SecurityCheck;
import com.google.gson.annotations.SerializedName;
import lombok.Getter;

/**
 * A wrapper object for the response of a security check request
 */
@Getter
public class SecurityCheckResponse {
  /**
   * The resulting security check
   * @return the security check
   */
  @SerializedName("security_check")
  private SecurityCheck securityCheck;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy