com.contrastsecurity.models.Organization Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of contrast-sdk-java Show documentation
Show all versions of contrast-sdk-java Show documentation
SDK for accessing and using the Contrast TeamServer REST API in Java
package com.contrastsecurity.models;
import com.google.gson.annotations.SerializedName;
public class Organization {
public String getDateFormat() { return dateFormat; }
@SerializedName("date_format")
private String dateFormat;
public String getName() { return name; }
private String name;
public String getOrgUuid() { return orgUuid; }
@SerializedName("organization_uuid")
private String orgUuid;
public String getShortName() { return shortName; }
@SerializedName("shortname")
private String shortName;
public String getTimeFormat() { return timeFormat; }
@SerializedName("time_format")
private String timeFormat;
public String getTimeZone() { return timeZone; }
@SerializedName("timezone")
private String timeZone;
}