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

     1  // This class was auto-generated from the API references found at
     2  // https://epayments-api.developer-ingenico.com/
     3  
     4  package payment
     5  
     6  // FindResponse represents class FindPaymentsResponse
     7  type FindResponse struct {
     8  	Limit      *int32     `json:"limit,omitempty"`
     9  	Offset     *int32     `json:"offset,omitempty"`
    10  	Payments   *[]Payment `json:"payments,omitempty"`
    11  	TotalCount *int32     `json:"totalCount,omitempty"`
    12  }
    13  
    14  // NewFindResponse constructs a new FindResponse
    15  func NewFindResponse() *FindResponse {
    16  	return &FindResponse{}
    17  }