Go configuration
You can customize the behavior of the Go SDK generator in generators.yml:
alwaysSendRequiredProperties
When enabled, ensures that all required properties are always included in API requests, even if they have default values or are otherwise optional in the implementation.
auto-generate-idempotency-key
Overrides the API-wide api.settings.auto-generate-idempotency-key for this SDK. Set true to attach an idempotency-key header to eligible requests (POST and PUT by default) unless the caller provides one, or false to opt this SDK out when auto-generation is enabled API-wide. Pass an object to customize header-name and methods.
clientConstructorName
Customizes the name of the client constructor function. This allows you to specify a custom name for the function that users will call to create a new instance of the client.
clientName
Specifies the name of the generated client struct. This determines the primary client type name that users will interact with in the generated Go SDK.
exportedClientName
Sets the name of the exported client that will be used in code snippets and documentation examples. This is useful for customizing how the client appears in generated documentation.
maxRetries
The default number of retries for failed requests. When not set, the generated SDK uses its own built-in default. SDK users can still override this per-request via request options.
offsetSemantics
Controls how the offset parameter is interpreted for auto-paginated endpoints.
item-index: The offset counts individual items (e.g., offset 20 skips the first 20 items).page-index: The offset counts pages (e.g., offset 3 skips to page 3).
omitFernHeaders
When enabled, the generated SDK omits the X-Fern-Language, X-Fern-SDK-Name, and X-Fern-SDK-Version headers from HTTP requests.
includePlatformHeaders
When enabled, the generated SDK sends a single structured User-Agent header of the form {sdkName}/{version} ({os}; {arch}) {runtime}/{runtimeVersion} (for example, my-sdk/0.0.1 (linux; x86_64) Go/1.22.0), carrying SDK, operating system, architecture, and runtime information in place of the default User-Agent and discrete platform headers. A configured user-agent template supplies the leading product token. If omitFernHeaders is enabled, no User-Agent or platform headers are sent and this option has no effect.
allowUserAgentAppInfo
When enabled, the generated SDK exposes option.WithUserAgentAppInfo(name, version, comment), which appends a {name}/{version} ({comment}) product token to the User-Agent header so an application built on the SDK can identify itself to the API. The application passes a required name plus an optional version and comment; "" drops that part of the token. An explicit User-Agent header takes precedence, and omitFernHeaders suppresses the header entirely.
enableRequestBodyPagination
Generates auto-pagination for endpoints whose cursor or offset page property is a top-level request body property (for example, cursor: $request.cursor). The generated pager advances the page by setting the field on the request object instead of on the query string. This defaults to false because enabling it changes the affected methods’ return types from a response to a pager. Nested body page properties (for example, cursor: $request.pagination.cursor) are unsupported and still generate a plain, non-paginated method.
enableWireTests
Generates mock server (wire) tests to verify that the SDK sends the correct HTTP requests and correctly handles responses per the API spec. When enabled, Docker is required as a runtime dependency to run the generated tests.
importPath
Use this option if you plan to depend on the generated Go SDK from within your project, and not depend on it as a separate, published Go module.
module configuration option instead.You can generate the Go SDK code into a gen/go/api package with the following generators.yml
configuration:
<YOUR_ORGANIZATION> and <YOUR_REPOSITORY> placeholders
with the relevant elements in your go.mod path. In this case, the generated Go SDK uses the same go.mod path used by the rest of your Go module.includeLegacyClientOptions
When enabled, includes legacy client options for backward compatibility with older versions of the SDK. This is useful for maintaining compatibility when upgrading SDK versions.
inlineFileProperties
Controls whether file upload properties are generated as inline request properties instead of separate parameters. When enabled, file upload fields become part of the request struct rather than being passed as individual function parameters.
inlinePathParameters
When enabled, path parameters are inlined into request types rather than being passed as separate function parameters. This creates a more unified request structure where path parameters are included in the request object.
module
Use this option if you plan to distribute the generated Go SDK as a separate, published Go module.
importPath configuration option instead.You can generate the Go SDK code into a separate module (defined with its own go.mod)
with the following generators.yml configuration:
This configuration will generate a go.mod alongside the rest of the Go SDK code at the target output
location. With this, import statements within the generated Go SDK are all resolved from the configured
module path.
By default, the generated go.mod will be set to 1.13. You can override this behavior by specifying
the version key:
If you want to depend on the generated Go SDK locally (without distributing it as a separate Go module),
and you use the module configuration option, you will need to modify your project’s top-level go.mod to include a replace statement:
packageName
Specifies the package name for the generated Go code. This determines the package declaration that will appear at the top of generated Go files and affects how users import the SDK.
respectOptionalRequestBody
Lets callers omit the request body on endpoints with an optional request body. A request wrapper with a nil body sends no body and no Content-Type header, instead of the JSON literal null. Enable this when your API treats a missing body differently from a null one.
Only applies to request bodies declared as a single named type. Required bodies and inlined request properties are unaffected.
serverUrlVariables
Controls whether the generated SDK emits server URL variable client options and construction-time base-URL template interpolation. Set to false to disable both, falling back to the base-URL behavior from before server URL templating.
union
Controls the union type generation strategy. Use ‘v0’ for the legacy union implementation or ‘v1’ for the newer, more robust union handling approach that provides better type safety and discriminated union support.
useReaderForBytesRequest
When enabled, uses io.Reader interface for handling byte request bodies instead of byte slices. This is more memory-efficient for large payloads and follows Go best practices for streaming data.
user-agent
Sets a custom User-Agent header template for requests sent by the generated SDK. The template is resolved at generation time and supports the {packageName}, {version}, {language}, {generatorVersion}, {organization}, and {apiName} placeholders.
This sends User-Agent: plantstore-go-sdk/0.1.0. With includePlatformHeaders enabled, the resolved value leads the structured header: User-Agent: plantstore-go-sdk/0.1.0 (linux; x86_64) Go/1.22.0. A value that doesn’t end in a version, such as plantstore/sdk-go, is used as-is. The allowUserAgentAppInfo token is appended after either form.