dev.openfga.sdk.api.client.model.ClientListUsersResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openfga-sdk Show documentation
Show all versions of openfga-sdk Show documentation
This is an autogenerated Java SDK for OpenFGA. It provides a wrapper around the [OpenFGA API definition](https://openfga.dev/api).
/*
* OpenFGA
* A high performance and flexible authorization/permission engine built for developers and inspired by Google Zanzibar.
*
* The version of the OpenAPI document: 1.x
* Contact: [email protected]
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package dev.openfga.sdk.api.client.model;
import dev.openfga.sdk.api.client.ApiResponse;
import dev.openfga.sdk.api.model.ListUsersResponse;
import java.util.List;
import java.util.Map;
public class ClientListUsersResponse extends ListUsersResponse {
private final int statusCode;
private final Map> headers;
private final String rawResponse;
public ClientListUsersResponse(ApiResponse apiResponse) {
this.statusCode = apiResponse.getStatusCode();
this.headers = apiResponse.getHeaders();
this.rawResponse = apiResponse.getRawResponse();
ListUsersResponse response = apiResponse.getData();
this.setUsers(response.getUsers());
}
public int getStatusCode() {
return statusCode;
}
public Map> getHeaders() {
return headers;
}
public String getRawResponse() {
return rawResponse;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy