[docs]classWelcomeFree(BaseImageModel):"""Represents a free welcome image."""__endpoint__=Base.WELCOMEtemplate:Literal[1,2,3,4,5,6,7]=attribute(in_range=(1,7))"""The template from a predefined list. Choose a number between 1 and 7."""type:WelcomeType"""The type."""background:WelcomeBackground"""The background."""username:str"""The username of the user."""avatar_url:str=attribute(data_name="avatar")"""The avatar URL of the user. Must be .png or .jpg."""server_name:str=attribute(data_name="guildName")"""The server name."""member_count:int=attribute(data_name="memberCount")"""The member count."""text_color:WelcomeTextColor=attribute(data_name="textcolor")"""The text color."""discriminator:int|None=attribute(default=None,max_length=4,min_length=1,forced_type=str)"""The discriminator of the user. Will be stripped if equal to 0 """font:Literal[0,1,2,3,4,5,6,7]|None=attribute(default=None,in_range=(0,7))"""The font from a predefined list. Choose a number between 0 and 7. .. versionchanged:: 0.1.0 This takes a range of 0-7 now instead of 0-10. """