GET | /eaccounting/settings |
---|
import Foundation
import ServiceStack
public class GetEAccountingSettingsQuery : ICompany, Codable
{
/**
* E-Accounting settings company Id.
*/
// @ApiMember(Description="E-Accounting settings company Id.")
public var companyId:String?
required public init(){}
}
public class EAccountingSettingsQueryResponse : Codable
{
public var companyId:String?
public var active:Bool
public var defaultArticle6PercentVat:String
public var defaultArticle12PercentVat:Double
public var defaultArticle25PercentVat:Double
public var defaultCreateType:String
public var defaultTermsOfPaymentId:String
required public init(){}
}
Swift GetEAccountingSettingsQuery DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .other suffix or ?format=other
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
GET /eaccounting/settings HTTP/1.1 Host: api.bokamera.se Accept: text/jsonl
HTTP/1.1 200 OK Content-Type: text/jsonl Content-Length: length {"CompanyId":"00000000-0000-0000-0000-000000000000","Active":false,"DefaultArticle6PercentVat":"String","DefaultArticle12PercentVat":0,"DefaultArticle25PercentVat":0,"DefaultCreateType":"String","DefaultTermsOfPaymentId":"String"}