github.com/Ingenico-ePayments/connect-sdk-go@v0.0.0-20240318153750-1f8cd329b9c9/domain/payout/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 payout
     5  
     6  // FindResponse represents class FindPayoutsResponse
     7  type FindResponse struct {
     8  	Limit      *int32    `json:"limit,omitempty"`
     9  	Offset     *int32    `json:"offset,omitempty"`
    10  	Payouts    *[]Result `json:"payouts,omitempty"`
    11  	TotalCount *int32    `json:"totalCount,omitempty"`
    12  }
    13  
    14  // NewFindResponse constructs a new FindResponse
    15  func NewFindResponse() *FindResponse {
    16  	return &FindResponse{}
    17  }