@@ -50,12 +50,13 @@ class FiscalDocumentDetailedResponse(BaseModel):
5050 status : Optional [FiscalDocumentStatus ] = None
5151 origin : Optional [StrictStr ] = None
5252 external_id : Optional [StrictStr ] = Field (default = None , alias = "externalId" )
53+ fail_reason : Optional [StrictStr ] = Field (default = None , alias = "failReason" )
5354 created_at : Optional [datetime ] = Field (default = None , alias = "createdAt" )
5455 parent_id : Optional [StrictStr ] = Field (default = None , alias = "parentId" )
5556 updated_at : Optional [datetime ] = Field (default = None , alias = "updatedAt" )
5657 government_integration : Optional [GovernmentIntegration ] = Field (default = None , alias = "governmentIntegration" )
5758 actions : Optional [List [Action ]] = Field (default = None , description = "Returns the list of actions available for the transaction" )
58- __properties : ClassVar [List [str ]] = ["id" , "number" , "propertyId" , "userId" , "userFullName" , "sourceId" , "sourceKind" , "kind" , "invoiceDate" , "fileName" , "amount" , "balance" , "dueDate" , "recipients" , "status" , "origin" , "externalId" , "createdAt" , "parentId" , "updatedAt" , "governmentIntegration" , "actions" ]
59+ __properties : ClassVar [List [str ]] = ["id" , "number" , "propertyId" , "userId" , "userFullName" , "sourceId" , "sourceKind" , "kind" , "invoiceDate" , "fileName" , "amount" , "balance" , "dueDate" , "recipients" , "status" , "origin" , "externalId" , "failReason" , " createdAt" , "parentId" , "updatedAt" , "governmentIntegration" , "actions" ]
5960
6061 model_config = ConfigDict (
6162 populate_by_name = True ,
@@ -142,6 +143,7 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
142143 "status" : obj .get ("status" ),
143144 "origin" : obj .get ("origin" ),
144145 "externalId" : obj .get ("externalId" ),
146+ "failReason" : obj .get ("failReason" ),
145147 "createdAt" : obj .get ("createdAt" ),
146148 "parentId" : obj .get ("parentId" ),
147149 "updatedAt" : obj .get ("updatedAt" ),
0 commit comments