github.com/Ingenico-ePayments/connect-sdk-go@v0.0.0-20240318153750-1f8cd329b9c9/domain/payout/Details.go (about)

     1  // This class was auto-generated from the API references found at
     2  // https://epayments-api.developer-ingenico.com/
     3  
     4  package payout
     5  
     6  import "github.com/Ingenico-ePayments/connect-sdk-go/domain/definitions"
     7  
     8  // Details represents class PayoutDetails
     9  type Details struct {
    10  	AmountOfMoney *definitions.AmountOfMoney `json:"amountOfMoney,omitempty"`
    11  	Customer      *Customer                  `json:"customer,omitempty"`
    12  	References    *References                `json:"references,omitempty"`
    13  }
    14  
    15  // NewDetails constructs a new Details
    16  func NewDetails() *Details {
    17  	return &Details{}
    18  }