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.

self is explicitly positional-only to allow self as 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: str

Ancestors

  • pydantic.main.BaseModel

Class variables

var assetPath : str
var displayName : str
var model_computed_fields
var model_config
var model_fields
var uuid : str