You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
var
lDragonBallAPIClient: IDragonBallAPIClient;
begin
lDragonBallAPIClient := TRestfacesClientBuilder<IDragonBallAPIClient>.New()
.BaseUrl('https://dragonball-api.com/api')
.MessageConverter(TRestfacesJSONDefaultConverter)
.HttpClient(TRestfacesDefaultHttpClient)
.BuildClient();
end;
Class Function
var
lDragonBallAPIClient: IDragonBallAPIClient;
begin
lDragonBallAPIClient := TRestfaces.MakeClient<IDragonBallAPIClient>('https://dragonball-api.com/api');
end;