package model import ( "time" "github.com/tech/sendico/pkg/model" paymenttypes "github.com/tech/sendico/pkg/payments/types" "go.mongodb.org/mongo-driver/bson/primitive" ) type PaymentExecution struct { ID primitive.ObjectID `bson:"_id,omitempty" json:"id"` IdempotencyKey string `bson:"idempotencyKey,omitempty" json:"idempotency_key,omitempty"` PaymentIntentID string `bson:"paymentIntentId,omitempty" json:"payment_intent_id,omitempty"` ExecutedMoney *paymenttypes.Money `bson:"executedMoney,omitempty" json:"executed_money,omitempty"` QuoteRef string `bson:"quoteRef,omitempty" json:"quote_ref,omitempty"` ExecutedAt time.Time `bson:"executedAt,omitempty" json:"executed_at,omitempty"` Status string `bson:"status,omitempty" json:"status,omitempty"` } type TelegramConfirmation struct { ID primitive.ObjectID `bson:"_id,omitempty" json:"id"` RequestID string `bson:"requestId,omitempty" json:"request_id,omitempty"` PaymentIntentID string `bson:"paymentIntentId,omitempty" json:"payment_intent_id,omitempty"` QuoteRef string `bson:"quoteRef,omitempty" json:"quote_ref,omitempty"` RawReply *model.TelegramMessage `bson:"rawReply,omitempty" json:"raw_reply,omitempty"` ReceivedAt time.Time `bson:"receivedAt,omitempty" json:"received_at,omitempty"` }