github.com/Ingenico-ePayments/connect-sdk-go@v0.0.0-20240318153750-1f8cd329b9c9/domain/services/Swift.go (about) 1 // This class was auto-generated from the API references found at 2 // https://epayments-api.developer-ingenico.com/ 3 4 package services 5 6 // Swift represents class Swift 7 type Swift struct { 8 Bic *string `json:"bic,omitempty"` 9 Category *string `json:"category,omitempty"` 10 ChipsUID *string `json:"chipsUID,omitempty"` 11 ExtraInfo *string `json:"extraInfo,omitempty"` 12 PoBoxCountry *string `json:"poBoxCountry,omitempty"` 13 PoBoxLocation *string `json:"poBoxLocation,omitempty"` 14 PoBoxNumber *string `json:"poBoxNumber,omitempty"` 15 PoBoxZip *string `json:"poBoxZip,omitempty"` 16 RoutingBic *string `json:"routingBic,omitempty"` 17 Services *string `json:"services,omitempty"` 18 } 19 20 // NewSwift constructs a new Swift 21 func NewSwift() *Swift { 22 return &Swift{} 23 }