diff --git a/config/clients/go/template/client/client.mustache b/config/clients/go/template/client/client.mustache index 2fdf56ac..8f81dc8a 100644 --- a/config/clients/go/template/client/client.mustache +++ b/config/clients/go/template/client/client.mustache @@ -428,6 +428,27 @@ type SdkClient interface { * @return *ClientWriteAssertionsResponse */ WriteAssertionsExecute(request SdkClientWriteAssertionsRequestInterface) (*ClientWriteAssertionsResponse, error) + + /* + * SetAuthorizationModelId allows setting the Authorization Model ID for an OpenFGAClient. + * @param string authorizationModelId - The Authorization Model ID to set. + */ + SetAuthorizationModelId(authorizationModelId string) error + /* + * GetAuthorizationModelId retrieves the Authorization Model ID for an OpenFGAClient. + * @return string + */ + GetAuthorizationModelId() (string, error) + /* + * SetStoreId allows setting the Store ID for an OpenFGAClient. + * @param string storeId - The Store ID to set. + */ + SetStoreId(storeId string) error + /* + * GetStoreId retrieves the Store ID set in the OpenFGAClient. + * @return string + */ + GetStoreId() (string, error) } func (client *OpenFgaClient) SetAuthorizationModelId(authorizationModelId string) error {