from django.urls import path from .views import ( GoPayPaymentView, GoPayPaymentStatusView, GoPayRefundPaymentView, GoPayCaptureAuthorizationView, GoPayVoidAuthorizationView, GoPayCreateRecurrenceView, GoPayPaymentInstrumentsView, ) urlpatterns = [ path('payment/', GoPayPaymentView.as_view(), name='gopay-payment'), path('payment//status/', GoPayPaymentStatusView.as_view(), name='gopay-payment-status'), path('payment//refund/', GoPayRefundPaymentView.as_view(), name='gopay-refund-payment'), path('payment//capture/', GoPayCaptureAuthorizationView.as_view(), name='gopay-capture-authorization'), path('payment//void/', GoPayVoidAuthorizationView.as_view(), name='gopay-void-authorization'), path('payment//recurrence/', GoPayCreateRecurrenceView.as_view(), name='gopay-create-recurrence'), path('payment-instruments/', GoPayPaymentInstrumentsView.as_view(), name='gopay-payment-instruments'), ]