mirror of
https://github.com/LukeHagar/plexterraform.git
synced 2025-12-06 04:20:52 +00:00
23 lines
884 B
Go
23 lines
884 B
Go
// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
|
|
|
|
package reflect
|
|
|
|
// Options provides configuration settings for how the reflection behavior
|
|
// works, letting callers tweak different behaviors based on their needs.
|
|
type Options struct {
|
|
// UnhandledNullAsEmpty controls whether null values should be
|
|
// translated into empty values without provider interaction, or if
|
|
// they must be explicitly handled.
|
|
UnhandledNullAsEmpty bool
|
|
|
|
// UnhandledUnknownAsEmpty controls whether null values should be
|
|
// translated into empty values without provider interaction, or if
|
|
// they must be explicitly handled.
|
|
UnhandledUnknownAsEmpty bool
|
|
|
|
// AllowRoundingNumbers silently rounds numbers that don't fit
|
|
// perfectly in the types they're being stored in, rather than
|
|
// returning errors. Numbers will always be rounded towards 0.
|
|
AllowRoundingNumbers bool
|
|
}
|