Module valolyticspy.dtos.valorant_api.ceremony
Expand source code
from pydantic import BaseModel
class Ceremony(BaseModel):
"""
Represents a ceremony in Valorant.
Attributes:
uuid (str): The unique identifier of the ceremony.
displayName (str): The display name of the ceremony.
assetPath (str): The path to the asset associated with the ceremony.
"""
uuid: str
displayName: str
assetPath: str
Classes
class Ceremony (**data: Any)-
Represents a ceremony in Valorant.
Attributes
uuid:str- The unique identifier of the ceremony.
displayName:str- The display name of the ceremony.
assetPath:str- The path to the asset associated with the ceremony.
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.Expand source code
class Ceremony(BaseModel): """ Represents a ceremony in Valorant. Attributes: uuid (str): The unique identifier of the ceremony. displayName (str): The display name of the ceremony. assetPath (str): The path to the asset associated with the ceremony. """ uuid: str displayName: str assetPath: strAncestors
- pydantic.main.BaseModel
Class variables
var assetPath : strvar displayName : strvar model_computed_fieldsvar model_configvar model_fieldsvar uuid : str