Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 771 Bytes

USAGE.md

File metadata and controls

28 lines (21 loc) · 771 Bytes
package hello.world;

import com.clerk.backend_api.Clerk;
import com.clerk.backend_api.models.operations.GetPublicInterstitialRequest;
import com.clerk.backend_api.models.operations.GetPublicInterstitialResponse;
import java.lang.Exception;

public class Application {

    public static void main(String[] args) throws Exception {

        Clerk sdk = Clerk.builder()
            .build();

        GetPublicInterstitialRequest req = GetPublicInterstitialRequest.builder()
                .build();

        GetPublicInterstitialResponse res = sdk.miscellaneous().getPublicInterstitial()
                .request(req)
                .call();

        // handle response
    }
}