Layer 220
constructor
messageActionStarGiftPurchaseOffer#774278d4 flags:# accepted:flags.0?true declined:flags.1?true gift:StarGift price:StarsAmount expires_at:int = MessageAction;

Parameters

Name Type Description
Accepted flags.0?true
Declined flags.1?true
Gift StarGift
Price StarsAmount
ExpiresAt int

Returns

MessageAction

Gogram Example

// Creating MessageActionStarGiftPurchaseOffer constructor
obj := &tg.MessageActionStarGiftPurchaseOffer{
    Gift: &tg.StarGift{},
    Price: &tg.StarsAmount{},
    ExpiresAt: 0,

    // Optional fields:
    // Accepted: true,
    // Declined: true,
}