| Requires any of the roles: | Agent, Administrator |
| GET,OPTIONS | /v1/Rfp/{RfpDocumentUID}/Estimate/Assemblies |
|---|
import datetime
import decimal
from marshmallow.fields import *
from servicestack import *
from typing import *
from dataclasses import dataclass, field
from dataclasses_json import dataclass_json, LetterCase, Undefined, config
from enum import Enum, IntEnum
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class AppliedAssembly:
task_seq: int = 0
template_u_i_d: Optional[str] = None
template_name: Optional[str] = None
applied_by: Optional[str] = None
applied_at: Optional[datetime.datetime] = None
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class AssemblyOption:
template_u_i_d: Optional[str] = None
name: Optional[str] = None
unit: Optional[str] = None
pack: Optional[str] = None
is_global: bool = False
summary: Optional[str] = None
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class EstimateAssembliesResponse:
response_status: Optional[ResponseStatus] = None
applied: List[AppliedAssembly] = field(default_factory=list)
available: List[AssemblyOption] = field(default_factory=list)
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class EstimateAssembliesRequest:
rfp_document_u_i_d: Optional[str] = None
Python EstimateAssembliesRequest DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
GET /v1/Rfp/{RfpDocumentUID}/Estimate/Assemblies HTTP/1.1
Host: api.dev.dynamics.trendsic.com
Accept: text/jsv
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length
{
ResponseStatus:
{
ErrorCode: String,
Message: String,
StackTrace: String,
Errors:
[
{
ErrorCode: String,
FieldName: String,
Message: String,
Meta:
{
String: String
}
}
],
Meta:
{
String: String
}
},
Applied:
[
{
TaskSeq: 0,
TemplateUID: 00000000000000000000000000000000,
TemplateName: String,
AppliedBy: String,
AppliedAt: 0001-01-01
}
],
Available:
[
{
TemplateUID: 00000000000000000000000000000000,
Name: String,
Unit: String,
Pack: String,
IsGlobal: False,
Summary: String
}
]
}