Layer 224
constructor
starGiftAttributeModel#565251e2 flags:# crafted:flags.0?true name:string document:Document rarity:StarGiftAttributeRarity = StarGiftAttribute;

Parameters

Name Type Description
Crafted flags.0?true
Name string Name of the model
Document Document The sticker representing the upgraded gift
Rarity StarGiftAttributeRarity

Gogram Example

// Creating StarGiftAttributeModel constructor
obj := &tg.StarGiftAttributeModel{
    Name: "Hello, World!",
    Document: &tg.Document{},
    Rarity: &tg.StarGiftAttributeRarity{},

    // Optional fields:
    // Crafted: true,
}