Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Events
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
SDKs
Events
Merge requests
!5
Refactoring eom
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Refactoring eom
develop-test
into
main
Overview
0
Commits
1
Pipelines
0
Changes
2
Merged
Dmitry Popov
requested to merge
develop-test
into
main
4 months ago
Overview
0
Commits
1
Pipelines
0
Changes
2
Expand
1
0
Merge request reports
Compare
main
main (base)
and
latest version
latest version
a41266d4
1 commit,
4 months ago
2 files
+
16
−
14
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
eom/payload.go
0 → 100644
+
16
−
0
Options
package
eom
type
OrderCompleted
struct
{
OrderId
string
`json:"orderId"`
CustomerId
string
`json:"customerId"`
StoreId
string
`json:"storeId"`
OrderItems
[]
OrderItem
`json:"orderItems"`
TotalAmount
float64
`json:"totalAmount"`
IsCustomerFirstOrder
bool
`json:"isCustomerFirstOrder"`
}
type
OrderItem
struct
{
ProductId
string
`json:"productId"`
Quantity
int
`json:"quantity"`
Price
float64
`json:"price"`
}
Loading