Module adcp.types.generated_poc.error_details.conflict
Classes
class ConflictDetails (**data: Any)-
Expand source code
class ConflictDetails(AdCPBaseModel): model_config = ConfigDict( extra='allow', ) resource_id: Annotated[ str | None, Field(description='Identifier of the conflicting resource') ] = None expected_version: Annotated[ float | str | None, Field(description='Version or ETag the client was operating against') ] = None current_version: Annotated[ float | str | None, Field(description='Current version or ETag on the server') ] = NoneBase model for AdCP types with spec-compliant serialization.
Defaults to
extra='ignore'so that unknown fields from newer spec versions are silently dropped rather than causing validation errors. Generated types whose schemas setadditionalProperties: trueoverride this withextra='allow'in their ownmodel_config. Consumers who want strict validation can override withextra='forbid'.Create a new model by parsing and validating input data from keyword arguments.
Raises [
ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.selfis explicitly positional-only to allowselfas a field name.Ancestors
- AdCPBaseModel
- pydantic.main.BaseModel
Class variables
var current_version : float | str | Nonevar expected_version : float | str | Nonevar model_configvar resource_id : str | None
Inherited members