Created
October 7, 2023 15:34
-
-
Save martin-mfg/e10c711269678565c0407e17071b7574 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package org.openapitools.client; | |
import org.openapitools.client.api.DefaultApi; | |
import java.time.OffsetDateTime; | |
public class Main { | |
public static void main(String[] args) { | |
DefaultApi apiInstance = new DefaultApi(new ApiClient()); | |
String result = apiInstance.anythingGet(OffsetDateTime.now()); | |
System.out.println(result); | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
openapi: 3.0.3 | |
info: | |
title: Demo | |
description: Demo | |
version: 1.0.0 | |
servers: | |
- url: https://httpbin.org/ | |
paths: | |
/anything: | |
get: | |
parameters: | |
- name: myParam | |
in: query | |
schema: | |
type: string | |
format: date-time | |
responses: | |
200: | |
description: OK | |
content: | |
application/json: | |
schema: | |
type: string |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment