21 lines
603 B
Go
21 lines
603 B
Go
|
/*
|
||
|
* HyperOne API
|
||
|
*
|
||
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
||
|
*
|
||
|
* API version: 0.0.2
|
||
|
* Generated by: OpenAPI Generator (https://openapi-generator.tech)
|
||
|
*/
|
||
|
|
||
|
package openapi
|
||
|
|
||
|
type ProjectInvoices struct {
|
||
|
Id string `json:"_id,omitempty"`
|
||
|
InvoiceNo string `json:"invoiceNo,omitempty"`
|
||
|
IssueDate string `json:"issueDate,omitempty"`
|
||
|
Summary string `json:"summary,omitempty"`
|
||
|
Project string `json:"project,omitempty"`
|
||
|
Organisation string `json:"organisation,omitempty"`
|
||
|
Duplicate ProjectDuplicate `json:"duplicate,omitempty"`
|
||
|
}
|