io.permit.sdk.api.models.TenantModel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of permit-sdk-java Show documentation
Show all versions of permit-sdk-java Show documentation
Java SDK for Permit.io: fullstack permissions for cloud native applications
package io.permit.sdk.api.models;
import java.util.ArrayList;
import java.util.HashMap;
public class TenantModel {
public String id = null;
public String externalId = null;
public String name = null;
public String description = null;
public HashMap settings = null;
public String organizationId = null;
}