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

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

/*
 * 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.GetStoreResponse;
import java.util.List;
import java.util.Map;

public class ClientGetStoreResponse extends GetStoreResponse {
    private final int statusCode;
    private final Map> headers;
    private final String rawResponse;

    public ClientGetStoreResponse(ApiResponse apiResponse) {
        this.statusCode = apiResponse.getStatusCode();
        this.headers = apiResponse.getHeaders();
        this.rawResponse = apiResponse.getRawResponse();
        GetStoreResponse response = apiResponse.getData();
        this.setName(response.getName());
        this.setId(response.getId());
        this.setCreatedAt(response.getCreatedAt());
        this.setUpdatedAt(response.getUpdatedAt());
    }

    public int getStatusCode() {
        return statusCode;
    }

    public Map> getHeaders() {
        return headers;
    }

    public String getRawResponse() {
        return rawResponse;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy