Skip to content

Commit

Permalink
Blacked
Browse files Browse the repository at this point in the history
  • Loading branch information
Mario Hernandez committed Jun 26, 2021
1 parent c61038c commit e482cf1
Show file tree
Hide file tree
Showing 4 changed files with 56 additions and 39 deletions.
39 changes: 15 additions & 24 deletions pyflowcl/Payment.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,10 @@


def getStatus(
apiclient: ApiClient, token: str,
) -> Union[
PaymentStatus, Error,
]:
""" Obtiene el estado de un pago previamente creado, el parametro token
apiclient: ApiClient,
token: str,
) -> Union[PaymentStatus, Error,]:
"""Obtiene el estado de un pago previamente creado, el parametro token
hace referencia a notification id, el cual se recibe luego de procesado
un pago
"""
Expand All @@ -38,11 +37,10 @@ def getStatus(


def getStatusByCommerceId(
apiclient: ApiClient, commerceId: str,
) -> Union[
PaymentStatus, Error,
]:
""" Obtiene el estado de un pago previamente creado, el parametro token
apiclient: ApiClient,
commerceId: str,
) -> Union[PaymentStatus, Error,]:
"""Obtiene el estado de un pago previamente creado, el parametro token
hace referencia a notification id, el cual se recibe luego de procesado
un pago
"""
Expand All @@ -65,11 +63,10 @@ def getStatusByCommerceId(


def getStatusByFlowOrder(
apiclient: ApiClient, flowOrder: int,
) -> Union[
PaymentStatus, Error,
]:
""" Obtiene el estado de un pago previamente creado, el parametro token
apiclient: ApiClient,
flowOrder: int,
) -> Union[PaymentStatus, Error,]:
"""Obtiene el estado de un pago previamente creado, el parametro token
hace referencia a notification id, el cual se recibe luego de procesado
un pago
"""
Expand All @@ -93,9 +90,7 @@ def getStatusByFlowOrder(

def getPayments(
apiclient: ApiClient, payment_info: Dict[str, Any]
) -> Union[
PaymentList, Error,
]:
) -> Union[PaymentList, Error,]:
"""
Este método permite obtener la lista paginada de pagos recibidos en
un día.Los objetos pagos de la lista tienen la misma estructura de
Expand All @@ -121,9 +116,7 @@ def getPayments(

def create(
apiclient: ApiClient, payment_data: Dict[str, Any]
) -> Union[
PaymentResponse, Error,
]:
) -> Union[PaymentResponse, Error,]:
"""
Este método permite crear una orden de pago a Flow y recibe como respuesta
la URL para redirigir el browser del pagador y el token que identifica la
Expand Down Expand Up @@ -158,9 +151,7 @@ def create(

def createEmail(
apiclient: ApiClient, payment_data: Dict[str, Any]
) -> Union[
PaymentResponse, Error,
]:
) -> Union[PaymentResponse, Error,]:
"""
Permite generar un cobro por email. Flow emite un email al pagador
que contiene la información de la Orden de pago y el link de pago
Expand Down
11 changes: 4 additions & 7 deletions pyflowcl/Refund.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,7 @@

def create(
apiclient: ApiClient, refund_data: Dict[str, Any]
) -> Union[
RefundStatus, Error,
]:
) -> Union[RefundStatus, Error,]:
"""
Este servicio permite crear una orden de reembolso. Una vez que el
receptor del reembolso acepte o rechaze el reembolso, Flow
Expand Down Expand Up @@ -44,10 +42,9 @@ def create(


def getStatus(
apiclient: ApiClient, token: str,
) -> Union[
RefundStatus, Error,
]:
apiclient: ApiClient,
token: str,
) -> Union[RefundStatus, Error,]:
"""
Permite obtener el estado de un reembolso solicitado. Este servicio
se debe invocar desde la página del comercio que se señaló en el
Expand Down
28 changes: 23 additions & 5 deletions pyflowcl/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,10 @@ def from_dict(d: Dict[str, Any]) -> Error:
code = d.get("code")
message = d.get("message")

return Error(code=code, message=message,)
return Error(
code=code,
message=message,
)


@dataclass
Expand Down Expand Up @@ -192,7 +195,11 @@ def from_dict(d: Dict[str, Any]) -> PaymentResponse:
token = d.get("token")
flowOrder = d.get("flowOrder")

return PaymentResponse(url=url, token=token, flowOrder=flowOrder,)
return PaymentResponse(
url=url,
token=token,
flowOrder=flowOrder,
)


@dataclass
Expand All @@ -209,7 +216,11 @@ def from_dict(d: Dict[str, Any]) -> PaymentList:
hasMore = d.get("hasMore")
data = d.get("data")

return PaymentList(total=total, hasMore=hasMore, data=data,)
return PaymentList(
total=total,
hasMore=hasMore,
data=data,
)


@dataclass
Expand Down Expand Up @@ -361,7 +372,11 @@ def from_dict(d: Dict[str, Any]) -> CustomerList:
hasMore = d.get("hasMore")
data = d.get("data")

return CustomerList(total=total, hasMore=hasMore, data=data,)
return CustomerList(
total=total,
hasMore=hasMore,
data=data,
)


@dataclass
Expand All @@ -376,7 +391,10 @@ def from_dict(d: Dict[str, Any]) -> CustomerRegisterResponse:
url = d.get("url")
token = d.get("token")

return CustomerRegisterResponse(url=url, token=token,)
return CustomerRegisterResponse(
url=url,
token=token,
)


@dataclass
Expand Down
17 changes: 14 additions & 3 deletions pyflowcl/models_36.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,10 @@ def from_dict(d: Dict[str, Any]) -> "Error":
code = d.get("code")
message = d.get("message")

return Error(code=code, message=message,)
return Error(
code=code,
message=message,
)


@dataclass
Expand Down Expand Up @@ -190,7 +193,11 @@ def from_dict(d: Dict[str, Any]) -> "PaymentResponse":
token = d.get("token")
flowOrder = d.get("flowOrder")

return PaymentResponse(url=url, token=token, flowOrder=flowOrder,)
return PaymentResponse(
url=url,
token=token,
flowOrder=flowOrder,
)


@dataclass
Expand All @@ -207,7 +214,11 @@ def from_dict(d: Dict[str, Any]) -> "PaymentList":
hasMore = d.get("hasMore")
data = d.get("data")

return PaymentList(total=total, hasMore=hasMore, data=data,)
return PaymentList(
total=total,
hasMore=hasMore,
data=data,
)


@dataclass
Expand Down

0 comments on commit e482cf1

Please sign in to comment.