com.descope.model.tenant.request.TenantSearchRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-sdk Show documentation
Show all versions of java-sdk Show documentation
Java library used to integrate with Descope.
The newest version!
package com.descope.model.tenant.request;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.List;
import java.util.Map;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
@Data
@Builder
@NoArgsConstructor
@AllArgsConstructor
public class TenantSearchRequest {
@JsonProperty("tenantIds")
List ids;
@JsonProperty("tenantNames")
List names;
Map customAttributes;
@JsonProperty("tenantSelfProvisioningDomains")
List selfProvisioningDomains;
String authType;
}