Skip to content

Latest commit

 

History

History
68 lines (41 loc) · 1.49 KB

File metadata and controls

68 lines (41 loc) · 1.49 KB

\DummyApi

All URIs are relative to http://localhost

Method HTTP request Description
Dummy Get /dummy/dummy Dummy path to fix omission in openapi generation when a type is not included.

Dummy

Dummy(ctx).Execute()

Dummy path to fix omission in openapi generation when a type is not included.

Example

package main

import (
    "context"
    "fmt"
    "os"
    openapiclient "./openapi"
)

func main() {

    configuration := openapiclient.NewConfiguration()
    apiClient := openapiclient.NewAPIClient(configuration)
    resp, r, err := apiClient.DummyApi.Dummy(context.Background()).Execute()
    if err != nil {
        fmt.Fprintf(os.Stderr, "Error when calling `DummyApi.Dummy``: %v\n", err)
        fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
    }
}

Path Parameters

This endpoint does not need any parameter.

Other Parameters

Other parameters are passed through a pointer to a apiDummyRequest struct via the builder pattern

Return type

(empty response body)

Authorization

ApiToken, ServiceBearer, ServiceToken

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]