- 后端: FastAPI + SQLAlchemy + SQLite, JWT认证, 代理支持的AirwallexClient - 前端: React 18 + Vite + Ant Design 5, 中文界面 - 功能: 卡片管理, 持卡人管理, 交易记录, API令牌, 系统设置, 审计日志 - 第三方API: X-API-Key认证, 权限控制 - Docker部署: docker-compose编排前后端
60 lines
3.0 KiB
Python
60 lines
3.0 KiB
Python
"""
|
|
Models for the Airwallex Issuing Transaction Dispute API.
|
|
"""
|
|
from typing import Optional, List, Dict, Any
|
|
from datetime import datetime
|
|
from pydantic import Field
|
|
from .base import AirwallexModel
|
|
|
|
|
|
class DisputeUpdateHistory(AirwallexModel):
|
|
"""Model for dispute update history."""
|
|
evidence_files: Optional[List[str]] = Field(None, description="Evidence files")
|
|
note: Optional[str] = Field(None, description="Note")
|
|
updated_at: datetime = Field(..., description="Update timestamp")
|
|
updated_by: str = Field(..., description="Entity that performed the update")
|
|
|
|
|
|
class TransactionDisputeCreateRequest(AirwallexModel):
|
|
"""Model for transaction dispute creation request."""
|
|
amount: Optional[float] = Field(None, description="The amount to be disputed")
|
|
evidence_files: Optional[List[str]] = Field(None, description="Evidence file IDs")
|
|
notes: Optional[str] = Field(None, description="Explanation for the dispute")
|
|
reason: str = Field(..., description="The reason for raising the dispute")
|
|
reference: Optional[str] = Field(None, description="Internal reference")
|
|
transaction_id: str = Field(..., description="The transaction ID to dispute")
|
|
|
|
|
|
class TransactionDisputeUpdateRequest(AirwallexModel):
|
|
"""Model for transaction dispute update request."""
|
|
amount: Optional[float] = Field(None, description="The disputed amount")
|
|
evidence_files: Optional[List[str]] = Field(None, description="Evidence file IDs")
|
|
notes: Optional[str] = Field(None, description="Explanation for the dispute")
|
|
reason: Optional[str] = Field(None, description="The reason for raising the dispute")
|
|
request_id: str = Field(..., description="A unique request ID")
|
|
|
|
|
|
class TransactionDispute(AirwallexModel):
|
|
"""Model for an Airwallex transaction dispute."""
|
|
resource_name: str = "issuing/transaction_disputes"
|
|
|
|
amount: float = Field(..., description="Dispute amount")
|
|
created_at: datetime = Field(..., description="Creation timestamp")
|
|
detailed_status: Optional[str] = Field(None, description="Detailed status")
|
|
id: str = Field(..., description="Unique identifier")
|
|
notes: Optional[str] = Field(None, description="Notes")
|
|
reason: str = Field(..., description="Dispute reason")
|
|
reference: Optional[str] = Field(None, description="Internal reference")
|
|
status: str = Field(..., description="Status")
|
|
transaction_id: str = Field(..., description="Transaction ID")
|
|
update_history: List[DisputeUpdateHistory] = Field(..., description="Update history")
|
|
updated_at: datetime = Field(..., description="Last update timestamp")
|
|
updated_by: str = Field(..., description="Last updated by")
|
|
|
|
|
|
class TransactionDisputeListResponse(AirwallexModel):
|
|
"""Model for transaction dispute list response."""
|
|
items: List[TransactionDispute] = Field(..., description="List of transaction disputes")
|
|
page_after: Optional[str] = Field(None, description="Page bookmark for next page")
|
|
page_before: Optional[str] = Field(None, description="Page bookmark for previous page")
|