Module adcp.types.generated_poc.property.property_feature
Classes
class PropertyFeature (**data: Any)-
Expand source code
class PropertyFeature(AdCPBaseModel): model_config = ConfigDict( extra='forbid', ) feature_id: Annotated[str, Field(description='Identifier for the feature being assessed')] source: Annotated[ str | None, Field(description='Source of the feature data (e.g., app_store_privacy_label, tcf_string)'), ] = None value: Annotated[str, Field(description='The feature value')]Base 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 feature_id : strvar model_configvar source : str | Nonevar value : str
Inherited members