github.com/Ingenico-ePayments/connect-sdk-go@v0.0.0-20240318153750-1f8cd329b9c9/domain/sessions/SessionResponse.go (about) 1 // This class was auto-generated from the API references found at 2 // https://epayments-api.developer-ingenico.com/ 3 4 package sessions 5 6 // SessionResponse represents class SessionResponse 7 type SessionResponse struct { 8 AssetURL *string `json:"assetUrl,omitempty"` 9 ClientAPIURL *string `json:"clientApiUrl,omitempty"` 10 ClientSessionID *string `json:"clientSessionId,omitempty"` 11 CustomerID *string `json:"customerId,omitempty"` 12 InvalidTokens *[]string `json:"invalidTokens,omitempty"` 13 Region *string `json:"region,omitempty"` 14 } 15 16 // NewSessionResponse constructs a new SessionResponse 17 func NewSessionResponse() *SessionResponse { 18 return &SessionResponse{} 19 }