Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ type transferInitiationResponse struct {
SourceAccountID string `json:"sourceAccountID"`
DestinationAccountID string `json:"destinationAccountID"`
ConnectorID string `json:"connectorID"`
Provider string `json:"provider"`
Type string `json:"type"`
Amount *big.Int `json:"amount"`
InitialAmount *big.Int `json:"initialAmount"`
Expand Down Expand Up @@ -78,6 +79,7 @@ func createTransferInitiationHandler(b backend.ServiceBackend) http.HandlerFunc
SourceAccountID: tf.SourceAccountID.String(),
DestinationAccountID: tf.DestinationAccountID.String(),
ConnectorID: tf.ConnectorID.String(),
Provider: tf.Provider.String(),
Type: tf.Type.String(),
Amount: tf.Amount,
InitialAmount: tf.InitialAmount,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -361,6 +361,7 @@ func TestCreateTransferInitiations(t *testing.T) {
SourceAccountID: createTransferInitiationResponse.SourceAccountID.String(),
DestinationAccountID: createTransferInitiationResponse.DestinationAccountID.String(),
ConnectorID: createTransferInitiationResponse.ConnectorID.String(),
Provider: createTransferInitiationResponse.Provider.String(),
Type: createTransferInitiationResponse.Type.String(),
Amount: createTransferInitiationResponse.Amount,
Asset: createTransferInitiationResponse.Asset.String(),
Expand Down