Layer 227
StarGiftAttributeRarity
Abstract type representing one of 5 possible constructors.
Type
Available Constructors
In Gogram, this type is represented as tg.StarGiftAttributeRarity interface.
Use any of the following constructors:
StarGiftAttributeRarity
Exact rarity value for a collectible gift attribute.
StarGiftAttributeRarityEpic
Represents epic collectible gift attribute rarity.
StarGiftAttributeRarityLegendary
Represents legendary collectible gift attribute rarity.
StarGiftAttributeRarityRare
Represents rare collectible gift attribute rarity.
StarGiftAttributeRarityUncommon
Represents uncommon collectible gift attribute rarity.
Gogram Example
// StarGiftAttributeRarity is an interface type // You can use any of the following constructors: var _ tg.StarGiftAttributeRarity = &tg.StarGiftAttributeRarity{} var _ tg.StarGiftAttributeRarity = &tg.StarGiftAttributeRarityEpic{} var _ tg.StarGiftAttributeRarity = &tg.StarGiftAttributeRarityLegendary{} var _ tg.StarGiftAttributeRarity = &tg.StarGiftAttributeRarityRare{} var _ tg.StarGiftAttributeRarity = &tg.StarGiftAttributeRarityUncommon{}