diff --git a/internal/api/documents_related_resources.go b/internal/api/documents_related_resources.go index dab9fdd3c..a3a9e4223 100644 --- a/internal/api/documents_related_resources.go +++ b/internal/api/documents_related_resources.go @@ -40,15 +40,15 @@ type externalLinkRelatedResourceGetResponse struct { } type hermesDocumentRelatedResourceGetResponse struct { - GoogleFileID string `json:"googleFileID"` - Title string `json:"title"` - DocumentType string `json:"documentType"` - DocumentNumber string `json:"documentNumber"` - SortOrder int `json:"sortOrder"` - Status string `json:"status"` - Owners []string `json:"owners"` - OwnerPhotos []string `json:"ownerPhotos"` - Product string `json:"product"` + GoogleFileID string `json:"googleFileID"` + Title string `json:"title"` + DocumentType string `json:"documentType"` + DocumentNumber string `json:"documentNumber"` + SortOrder int `json:"sortOrder"` + Status string `json:"status"` + Owners []string `json:"owners"` + OwnerPhotos []string `json:"ownerPhotos"` + Product string `json:"product"` } func documentsResourceRelatedResourcesHandler( @@ -157,10 +157,10 @@ func documentsResourceRelatedResourcesHandler( DocumentType: doc.DocType, DocumentNumber: doc.DocNumber, SortOrder: hdrr.RelatedResource.SortOrder, - Status: doc.Status, - Owners: doc.Owners, - OwnerPhotos: doc.OwnerPhotos, - Product: doc.Product, + Status: doc.Status, + Owners: doc.Owners, + OwnerPhotos: doc.OwnerPhotos, + Product: doc.Product, }) }