| import "@typespec/http"; | |
| import "@typespec/rest"; | |
| import "@typespec/openapi"; | |
| import "@typespec/openapi3"; | |
| import "../common/error.tsp"; | |
| import "../shared/index.tsp"; | |
| import "./taxcodes.tsp"; | |
| using TypeSpec.Http; | |
| using TypeSpec.OpenAPI; | |
| namespace Defaults; | |
| interface OrganizationDefaultTaxCodesOperations { | |
| get(): | |
| | Shared.GetResponse<OrganizationDefaultTaxCodes> | |
| | Common.NotFound | |
| | Common.ErrorResponses; | |
| update( body: Shared.UpdateRequest<OrganizationDefaultTaxCodes>): | |
| | Shared.UpsertResponse<OrganizationDefaultTaxCodes> | |
| | Common.NotFound | |
| | Common.ErrorResponses; | |
| } | |