Locale¶
- pydantic model ibm_watsonx_gov.entities.locale.Locale¶
Bases:
BaseModel
Show JSON schema
{ "title": "Locale", "type": "object", "properties": { "input": { "anyOf": [ { "items": { "type": "string" }, "type": "array" }, { "additionalProperties": { "type": "string" }, "type": "object" }, { "type": "string" }, { "type": "null" } ], "default": null, "title": "Input" }, "output": { "anyOf": [ { "items": { "type": "string" }, "type": "array" }, { "type": "null" } ], "default": null, "title": "Output" }, "reference": { "anyOf": [ { "items": { "type": "string" }, "type": "array" }, { "additionalProperties": { "type": "string" }, "type": "object" }, { "type": "string" }, { "type": "null" } ], "default": null, "title": "Reference" } } }
- Fields:
- field input: list[str] | dict[str, str] | str | None = None¶
- field output: list[str] | None = None¶
- field reference: list[str] | dict[str, str] | str | None = None¶