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

dev.openfga.sdk.api.client.model.ClientReadAssertionsResponse Maven / Gradle / Ivy

Go to download

This is an autogenerated Java SDK for OpenFGA. It provides a wrapper around the [OpenFGA API definition](https://openfga.dev/api).

There is a newer version: 0.7.2
Show newest version
/*
 * 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.ReadAssertionsResponse;
import java.util.List;
import java.util.Map;

public class ClientReadAssertionsResponse extends ReadAssertionsResponse {
    private final int statusCode;
    private final Map> headers;
    private final String rawResponse;

    public ClientReadAssertionsResponse(ApiResponse apiResponse) {
        this.statusCode = apiResponse.getStatusCode();
        this.headers = apiResponse.getHeaders();
        this.rawResponse = apiResponse.getRawResponse();
        ReadAssertionsResponse response = apiResponse.getData();
        this.setAssertions(response.getAssertions());
        this.setAuthorizationModelId(response.getAuthorizationModelId());
    }

    public int getStatusCode() {
        return statusCode;
    }

    public Map> getHeaders() {
        return headers;
    }

    public String getRawResponse() {
        return rawResponse;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy