| POST,OPTIONS | /v1/plansets/{PlanSetUID}/make-current |
|---|
<?php namespace dtos;
use DateTime;
use Exception;
use DateInterval;
use JsonSerializable;
use ServiceStack\{IReturn,IReturnVoid,IGet,IPost,IPut,IDelete,IPatch,IMeta,IHasSessionId,IHasBearerToken,IHasVersion};
use ServiceStack\{ICrud,ICreateDb,IUpdateDb,IPatchDb,IDeleteDb,ISaveDb,AuditBase,QueryDb,QueryDb2,QueryData,QueryData2,QueryResponse};
use ServiceStack\{ResponseStatus,ResponseError,EmptyResponse,IdResponse,ArrayList,KeyValuePair2,StringResponse,StringsResponse,Tuple2,Tuple3,ByteArray};
use ServiceStack\{JsonConverters,Returns,TypeContext};
class SheetPin implements JsonSerializable
{
public function __construct(
/** @var int */
public int $SheetPinID=0,
/** @var int */
public int $SheetID=0,
/** @var string|null */
public ?string $EntityType=null,
/** @var int|null */
public ?int $EntityID=null,
/** @var string|null */
public ?string $EntityUID=null,
/** @var float */
public float $X=0.0,
/** @var float */
public float $Y=0.0,
/** @var string|null */
public ?string $Label=null,
/** @var string|null */
public ?string $CreatedBy=null,
/** @var DateTime|null */
public ?DateTime $CreatedAt=null,
/** @var string|null */
public ?string $EntityNo=null,
/** @var string|null */
public ?string $EntityTitle=null,
/** @var string|null */
public ?string $EntityStatus=null,
/** @var string|null */
public ?string $InspectionUID=null,
/** @var string|null */
public ?string $SheetNumber=null,
/** @var string|null */
public ?string $SheetTitle=null,
/** @var int|null */
public ?int $PlanSetID=null,
/** @var string|null */
public ?string $PlanSetUID=null,
/** @var string|null */
public ?string $PlanSetName=null
) {
}
/** @throws Exception */
public function fromMap($o): void {
if (isset($o['SheetPinID'])) $this->SheetPinID = $o['SheetPinID'];
if (isset($o['SheetID'])) $this->SheetID = $o['SheetID'];
if (isset($o['EntityType'])) $this->EntityType = $o['EntityType'];
if (isset($o['EntityID'])) $this->EntityID = $o['EntityID'];
if (isset($o['EntityUID'])) $this->EntityUID = $o['EntityUID'];
if (isset($o['X'])) $this->X = $o['X'];
if (isset($o['Y'])) $this->Y = $o['Y'];
if (isset($o['Label'])) $this->Label = $o['Label'];
if (isset($o['CreatedBy'])) $this->CreatedBy = $o['CreatedBy'];
if (isset($o['CreatedAt'])) $this->CreatedAt = JsonConverters::from('DateTime', $o['CreatedAt']);
if (isset($o['EntityNo'])) $this->EntityNo = $o['EntityNo'];
if (isset($o['EntityTitle'])) $this->EntityTitle = $o['EntityTitle'];
if (isset($o['EntityStatus'])) $this->EntityStatus = $o['EntityStatus'];
if (isset($o['InspectionUID'])) $this->InspectionUID = $o['InspectionUID'];
if (isset($o['SheetNumber'])) $this->SheetNumber = $o['SheetNumber'];
if (isset($o['SheetTitle'])) $this->SheetTitle = $o['SheetTitle'];
if (isset($o['PlanSetID'])) $this->PlanSetID = $o['PlanSetID'];
if (isset($o['PlanSetUID'])) $this->PlanSetUID = $o['PlanSetUID'];
if (isset($o['PlanSetName'])) $this->PlanSetName = $o['PlanSetName'];
}
/** @throws Exception */
public function jsonSerialize(): mixed
{
$o = [];
if (isset($this->SheetPinID)) $o['SheetPinID'] = $this->SheetPinID;
if (isset($this->SheetID)) $o['SheetID'] = $this->SheetID;
if (isset($this->EntityType)) $o['EntityType'] = $this->EntityType;
if (isset($this->EntityID)) $o['EntityID'] = $this->EntityID;
if (isset($this->EntityUID)) $o['EntityUID'] = $this->EntityUID;
if (isset($this->X)) $o['X'] = $this->X;
if (isset($this->Y)) $o['Y'] = $this->Y;
if (isset($this->Label)) $o['Label'] = $this->Label;
if (isset($this->CreatedBy)) $o['CreatedBy'] = $this->CreatedBy;
if (isset($this->CreatedAt)) $o['CreatedAt'] = JsonConverters::to('DateTime', $this->CreatedAt);
if (isset($this->EntityNo)) $o['EntityNo'] = $this->EntityNo;
if (isset($this->EntityTitle)) $o['EntityTitle'] = $this->EntityTitle;
if (isset($this->EntityStatus)) $o['EntityStatus'] = $this->EntityStatus;
if (isset($this->InspectionUID)) $o['InspectionUID'] = $this->InspectionUID;
if (isset($this->SheetNumber)) $o['SheetNumber'] = $this->SheetNumber;
if (isset($this->SheetTitle)) $o['SheetTitle'] = $this->SheetTitle;
if (isset($this->PlanSetID)) $o['PlanSetID'] = $this->PlanSetID;
if (isset($this->PlanSetUID)) $o['PlanSetUID'] = $this->PlanSetUID;
if (isset($this->PlanSetName)) $o['PlanSetName'] = $this->PlanSetName;
return empty($o) ? new class(){} : $o;
}
}
class Sheet implements JsonSerializable
{
public function __construct(
/** @var int */
public int $SheetID=0,
/** @var int */
public int $PlanSetID=0,
/** @var string|null */
public ?string $PlanSetUID=null,
/** @var string|null */
public ?string $PlanSetName=null,
/** @var int */
public int $ProjectID=0,
/** @var int */
public int $PageIndex=0,
/** @var string */
public string $AttachmentId='',
/** @var int */
public int $VersionNo=0,
/** @var string|null */
public ?string $SheetNumber=null,
/** @var string|null */
public ?string $SheetKey=null,
/** @var string|null */
public ?string $Title=null,
/** @var string|null */
public ?string $Discipline=null,
/** @var string|null */
public ?string $Revision=null,
/** @var DateTime|null */
public ?DateTime $RevisionDate=null,
/** @var float */
public float $WidthPt=0.0,
/** @var float */
public float $HeightPt=0.0,
/** @var string|null */
public ?string $ThumbKey=null,
/** @var string|null */
public ?string $ThumbUrl=null,
/** @var string|null */
public ?string $ThumbHash=null,
/** @var string|null */
public ?string $ExtractSource=null,
/** @var float|null */
public ?float $Confidence=null,
/** @var string|null */
public ?string $ChangeKind=null,
/** @var int|null */
public ?int $SupersedesSheetID=null,
/** @var bool|null */
public ?bool $IsCurrent=null,
/** @var int */
public int $PinCount=0,
/** @var string|null */
public ?string $UpdatedBy=null,
/** @var DateTime|null */
public ?DateTime $UpdatedAt=null,
/** @var array<SheetPin>|null */
public ?array $Pins=null
) {
}
/** @throws Exception */
public function fromMap($o): void {
if (isset($o['SheetID'])) $this->SheetID = $o['SheetID'];
if (isset($o['PlanSetID'])) $this->PlanSetID = $o['PlanSetID'];
if (isset($o['PlanSetUID'])) $this->PlanSetUID = $o['PlanSetUID'];
if (isset($o['PlanSetName'])) $this->PlanSetName = $o['PlanSetName'];
if (isset($o['ProjectID'])) $this->ProjectID = $o['ProjectID'];
if (isset($o['PageIndex'])) $this->PageIndex = $o['PageIndex'];
if (isset($o['AttachmentId'])) $this->AttachmentId = $o['AttachmentId'];
if (isset($o['VersionNo'])) $this->VersionNo = $o['VersionNo'];
if (isset($o['SheetNumber'])) $this->SheetNumber = $o['SheetNumber'];
if (isset($o['SheetKey'])) $this->SheetKey = $o['SheetKey'];
if (isset($o['Title'])) $this->Title = $o['Title'];
if (isset($o['Discipline'])) $this->Discipline = $o['Discipline'];
if (isset($o['Revision'])) $this->Revision = $o['Revision'];
if (isset($o['RevisionDate'])) $this->RevisionDate = JsonConverters::from('DateTime', $o['RevisionDate']);
if (isset($o['WidthPt'])) $this->WidthPt = $o['WidthPt'];
if (isset($o['HeightPt'])) $this->HeightPt = $o['HeightPt'];
if (isset($o['ThumbKey'])) $this->ThumbKey = $o['ThumbKey'];
if (isset($o['ThumbUrl'])) $this->ThumbUrl = $o['ThumbUrl'];
if (isset($o['ThumbHash'])) $this->ThumbHash = $o['ThumbHash'];
if (isset($o['ExtractSource'])) $this->ExtractSource = $o['ExtractSource'];
if (isset($o['Confidence'])) $this->Confidence = $o['Confidence'];
if (isset($o['ChangeKind'])) $this->ChangeKind = $o['ChangeKind'];
if (isset($o['SupersedesSheetID'])) $this->SupersedesSheetID = $o['SupersedesSheetID'];
if (isset($o['IsCurrent'])) $this->IsCurrent = $o['IsCurrent'];
if (isset($o['PinCount'])) $this->PinCount = $o['PinCount'];
if (isset($o['UpdatedBy'])) $this->UpdatedBy = $o['UpdatedBy'];
if (isset($o['UpdatedAt'])) $this->UpdatedAt = JsonConverters::from('DateTime', $o['UpdatedAt']);
if (isset($o['Pins'])) $this->Pins = JsonConverters::fromArray('SheetPin', $o['Pins']);
}
/** @throws Exception */
public function jsonSerialize(): mixed
{
$o = [];
if (isset($this->SheetID)) $o['SheetID'] = $this->SheetID;
if (isset($this->PlanSetID)) $o['PlanSetID'] = $this->PlanSetID;
if (isset($this->PlanSetUID)) $o['PlanSetUID'] = $this->PlanSetUID;
if (isset($this->PlanSetName)) $o['PlanSetName'] = $this->PlanSetName;
if (isset($this->ProjectID)) $o['ProjectID'] = $this->ProjectID;
if (isset($this->PageIndex)) $o['PageIndex'] = $this->PageIndex;
if (isset($this->AttachmentId)) $o['AttachmentId'] = $this->AttachmentId;
if (isset($this->VersionNo)) $o['VersionNo'] = $this->VersionNo;
if (isset($this->SheetNumber)) $o['SheetNumber'] = $this->SheetNumber;
if (isset($this->SheetKey)) $o['SheetKey'] = $this->SheetKey;
if (isset($this->Title)) $o['Title'] = $this->Title;
if (isset($this->Discipline)) $o['Discipline'] = $this->Discipline;
if (isset($this->Revision)) $o['Revision'] = $this->Revision;
if (isset($this->RevisionDate)) $o['RevisionDate'] = JsonConverters::to('DateTime', $this->RevisionDate);
if (isset($this->WidthPt)) $o['WidthPt'] = $this->WidthPt;
if (isset($this->HeightPt)) $o['HeightPt'] = $this->HeightPt;
if (isset($this->ThumbKey)) $o['ThumbKey'] = $this->ThumbKey;
if (isset($this->ThumbUrl)) $o['ThumbUrl'] = $this->ThumbUrl;
if (isset($this->ThumbHash)) $o['ThumbHash'] = $this->ThumbHash;
if (isset($this->ExtractSource)) $o['ExtractSource'] = $this->ExtractSource;
if (isset($this->Confidence)) $o['Confidence'] = $this->Confidence;
if (isset($this->ChangeKind)) $o['ChangeKind'] = $this->ChangeKind;
if (isset($this->SupersedesSheetID)) $o['SupersedesSheetID'] = $this->SupersedesSheetID;
if (isset($this->IsCurrent)) $o['IsCurrent'] = $this->IsCurrent;
if (isset($this->PinCount)) $o['PinCount'] = $this->PinCount;
if (isset($this->UpdatedBy)) $o['UpdatedBy'] = $this->UpdatedBy;
if (isset($this->UpdatedAt)) $o['UpdatedAt'] = JsonConverters::to('DateTime', $this->UpdatedAt);
if (isset($this->Pins)) $o['Pins'] = JsonConverters::toArray('SheetPin', $this->Pins);
return empty($o) ? new class(){} : $o;
}
}
class PlanSet implements JsonSerializable
{
public function __construct(
/** @var int */
public int $PlanSetID=0,
/** @var string */
public string $PlanSetUID='',
/** @var int */
public int $ProjectID=0,
/** @var string|null */
public ?string $Name=null,
/** @var string|null */
public ?string $Source=null,
/** @var string|null */
public ?string $SourceLabel=null,
/** @var DateTime|null */
public ?DateTime $IssuedDate=null,
/** @var string */
public string $AttachmentId='',
/** @var string|null */
public ?string $AttachmentName=null,
/** @var float|null */
public ?float $FileSizeInKB=null,
/** @var int */
public int $VersionNo=0,
/** @var string|null */
public ?string $Status=null,
/** @var int */
public int $Progress=0,
/** @var int */
public int $PageCount=0,
/** @var int */
public int $SheetCount=0,
/** @var string|null */
public ?string $ExtractMode=null,
/** @var string|null */
public ?string $ErrorText=null,
/** @var int|null */
public ?int $SupersedesPlanSetID=null,
/** @var string|null */
public ?string $SupersedesName=null,
/** @var bool|null */
public ?bool $IsCurrent=null,
/** @var string|null */
public ?string $CreatedBy=null,
/** @var DateTime|null */
public ?DateTime $CreatedAt=null,
/** @var DateTime|null */
public ?DateTime $ProcessedAt=null,
/** @var int */
public int $AgeSeconds=0,
/** @var array<Sheet>|null */
public ?array $Sheets=null,
/** @var string|null */
public ?string $Headline=null
) {
}
/** @throws Exception */
public function fromMap($o): void {
if (isset($o['PlanSetID'])) $this->PlanSetID = $o['PlanSetID'];
if (isset($o['PlanSetUID'])) $this->PlanSetUID = $o['PlanSetUID'];
if (isset($o['ProjectID'])) $this->ProjectID = $o['ProjectID'];
if (isset($o['Name'])) $this->Name = $o['Name'];
if (isset($o['Source'])) $this->Source = $o['Source'];
if (isset($o['SourceLabel'])) $this->SourceLabel = $o['SourceLabel'];
if (isset($o['IssuedDate'])) $this->IssuedDate = JsonConverters::from('DateTime', $o['IssuedDate']);
if (isset($o['AttachmentId'])) $this->AttachmentId = $o['AttachmentId'];
if (isset($o['AttachmentName'])) $this->AttachmentName = $o['AttachmentName'];
if (isset($o['FileSizeInKB'])) $this->FileSizeInKB = $o['FileSizeInKB'];
if (isset($o['VersionNo'])) $this->VersionNo = $o['VersionNo'];
if (isset($o['Status'])) $this->Status = $o['Status'];
if (isset($o['Progress'])) $this->Progress = $o['Progress'];
if (isset($o['PageCount'])) $this->PageCount = $o['PageCount'];
if (isset($o['SheetCount'])) $this->SheetCount = $o['SheetCount'];
if (isset($o['ExtractMode'])) $this->ExtractMode = $o['ExtractMode'];
if (isset($o['ErrorText'])) $this->ErrorText = $o['ErrorText'];
if (isset($o['SupersedesPlanSetID'])) $this->SupersedesPlanSetID = $o['SupersedesPlanSetID'];
if (isset($o['SupersedesName'])) $this->SupersedesName = $o['SupersedesName'];
if (isset($o['IsCurrent'])) $this->IsCurrent = $o['IsCurrent'];
if (isset($o['CreatedBy'])) $this->CreatedBy = $o['CreatedBy'];
if (isset($o['CreatedAt'])) $this->CreatedAt = JsonConverters::from('DateTime', $o['CreatedAt']);
if (isset($o['ProcessedAt'])) $this->ProcessedAt = JsonConverters::from('DateTime', $o['ProcessedAt']);
if (isset($o['AgeSeconds'])) $this->AgeSeconds = $o['AgeSeconds'];
if (isset($o['Sheets'])) $this->Sheets = JsonConverters::fromArray('Sheet', $o['Sheets']);
if (isset($o['Headline'])) $this->Headline = $o['Headline'];
}
/** @throws Exception */
public function jsonSerialize(): mixed
{
$o = [];
if (isset($this->PlanSetID)) $o['PlanSetID'] = $this->PlanSetID;
if (isset($this->PlanSetUID)) $o['PlanSetUID'] = $this->PlanSetUID;
if (isset($this->ProjectID)) $o['ProjectID'] = $this->ProjectID;
if (isset($this->Name)) $o['Name'] = $this->Name;
if (isset($this->Source)) $o['Source'] = $this->Source;
if (isset($this->SourceLabel)) $o['SourceLabel'] = $this->SourceLabel;
if (isset($this->IssuedDate)) $o['IssuedDate'] = JsonConverters::to('DateTime', $this->IssuedDate);
if (isset($this->AttachmentId)) $o['AttachmentId'] = $this->AttachmentId;
if (isset($this->AttachmentName)) $o['AttachmentName'] = $this->AttachmentName;
if (isset($this->FileSizeInKB)) $o['FileSizeInKB'] = $this->FileSizeInKB;
if (isset($this->VersionNo)) $o['VersionNo'] = $this->VersionNo;
if (isset($this->Status)) $o['Status'] = $this->Status;
if (isset($this->Progress)) $o['Progress'] = $this->Progress;
if (isset($this->PageCount)) $o['PageCount'] = $this->PageCount;
if (isset($this->SheetCount)) $o['SheetCount'] = $this->SheetCount;
if (isset($this->ExtractMode)) $o['ExtractMode'] = $this->ExtractMode;
if (isset($this->ErrorText)) $o['ErrorText'] = $this->ErrorText;
if (isset($this->SupersedesPlanSetID)) $o['SupersedesPlanSetID'] = $this->SupersedesPlanSetID;
if (isset($this->SupersedesName)) $o['SupersedesName'] = $this->SupersedesName;
if (isset($this->IsCurrent)) $o['IsCurrent'] = $this->IsCurrent;
if (isset($this->CreatedBy)) $o['CreatedBy'] = $this->CreatedBy;
if (isset($this->CreatedAt)) $o['CreatedAt'] = JsonConverters::to('DateTime', $this->CreatedAt);
if (isset($this->ProcessedAt)) $o['ProcessedAt'] = JsonConverters::to('DateTime', $this->ProcessedAt);
if (isset($this->AgeSeconds)) $o['AgeSeconds'] = $this->AgeSeconds;
if (isset($this->Sheets)) $o['Sheets'] = JsonConverters::toArray('Sheet', $this->Sheets);
if (isset($this->Headline)) $o['Headline'] = $this->Headline;
return empty($o) ? new class(){} : $o;
}
}
class PlanSetResponse implements JsonSerializable
{
public function __construct(
/** @var ResponseStatus|null */
public ?ResponseStatus $ResponseStatus=null,
/** @var PlanSet|null */
public ?PlanSet $PlanSet=null,
/** @var array<Sheet>|null */
public ?array $RemovedSheets=null
) {
}
/** @throws Exception */
public function fromMap($o): void {
if (isset($o['ResponseStatus'])) $this->ResponseStatus = JsonConverters::from('ResponseStatus', $o['ResponseStatus']);
if (isset($o['PlanSet'])) $this->PlanSet = JsonConverters::from('PlanSet', $o['PlanSet']);
if (isset($o['RemovedSheets'])) $this->RemovedSheets = JsonConverters::fromArray('Sheet', $o['RemovedSheets']);
}
/** @throws Exception */
public function jsonSerialize(): mixed
{
$o = [];
if (isset($this->ResponseStatus)) $o['ResponseStatus'] = JsonConverters::to('ResponseStatus', $this->ResponseStatus);
if (isset($this->PlanSet)) $o['PlanSet'] = JsonConverters::to('PlanSet', $this->PlanSet);
if (isset($this->RemovedSheets)) $o['RemovedSheets'] = JsonConverters::toArray('Sheet', $this->RemovedSheets);
return empty($o) ? new class(){} : $o;
}
}
class PlanSetMakeCurrentRequest implements JsonSerializable
{
public function __construct(
/** @var string */
public string $PlanSetUID=''
) {
}
/** @throws Exception */
public function fromMap($o): void {
if (isset($o['PlanSetUID'])) $this->PlanSetUID = $o['PlanSetUID'];
}
/** @throws Exception */
public function jsonSerialize(): mixed
{
$o = [];
if (isset($this->PlanSetUID)) $o['PlanSetUID'] = $this->PlanSetUID;
return empty($o) ? new class(){} : $o;
}
}
PHP PlanSetMakeCurrentRequest DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .xml suffix or ?format=xml
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /v1/plansets/{PlanSetUID}/make-current HTTP/1.1
Host: api.dev.dynamics.trendsic.com
Accept: application/xml
Content-Type: application/xml
Content-Length: length
<PlanSetMakeCurrentRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CRM.AgencyPlatform.API.Internal">
<PlanSetUID>00000000-0000-0000-0000-000000000000</PlanSetUID>
</PlanSetMakeCurrentRequest>
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length
<PlanSetResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CRM.AgencyPlatform.API.Internal">
<PlanSet>
<AgeSeconds>0</AgeSeconds>
<AttachmentId>00000000-0000-0000-0000-000000000000</AttachmentId>
<AttachmentName>String</AttachmentName>
<CreatedAt>0001-01-01T00:00:00</CreatedAt>
<CreatedBy>String</CreatedBy>
<ErrorText>String</ErrorText>
<ExtractMode>String</ExtractMode>
<FileSizeInKB>0</FileSizeInKB>
<Headline>String</Headline>
<IsCurrent>false</IsCurrent>
<IssuedDate>0001-01-01T00:00:00</IssuedDate>
<Name>String</Name>
<PageCount>0</PageCount>
<PlanSetID>0</PlanSetID>
<PlanSetUID>00000000-0000-0000-0000-000000000000</PlanSetUID>
<ProcessedAt>0001-01-01T00:00:00</ProcessedAt>
<Progress>0</Progress>
<ProjectID>0</ProjectID>
<SheetCount>0</SheetCount>
<Sheets>
<Sheet>
<AttachmentId>00000000-0000-0000-0000-000000000000</AttachmentId>
<ChangeKind>String</ChangeKind>
<Confidence>0</Confidence>
<Discipline>String</Discipline>
<ExtractSource>String</ExtractSource>
<HeightPt>0</HeightPt>
<IsCurrent>false</IsCurrent>
<PageIndex>0</PageIndex>
<PinCount>0</PinCount>
<Pins>
<SheetPin>
<CreatedAt>0001-01-01T00:00:00</CreatedAt>
<CreatedBy>String</CreatedBy>
<EntityID>0</EntityID>
<EntityNo>String</EntityNo>
<EntityStatus>String</EntityStatus>
<EntityTitle>String</EntityTitle>
<EntityType>String</EntityType>
<EntityUID>00000000-0000-0000-0000-000000000000</EntityUID>
<InspectionUID>00000000-0000-0000-0000-000000000000</InspectionUID>
<Label>String</Label>
<PlanSetID>0</PlanSetID>
<PlanSetName>String</PlanSetName>
<PlanSetUID>00000000-0000-0000-0000-000000000000</PlanSetUID>
<SheetID>0</SheetID>
<SheetNumber>String</SheetNumber>
<SheetPinID>0</SheetPinID>
<SheetTitle>String</SheetTitle>
<X>0</X>
<Y>0</Y>
</SheetPin>
</Pins>
<PlanSetID>0</PlanSetID>
<PlanSetName>String</PlanSetName>
<PlanSetUID>00000000-0000-0000-0000-000000000000</PlanSetUID>
<ProjectID>0</ProjectID>
<Revision>String</Revision>
<RevisionDate>0001-01-01T00:00:00</RevisionDate>
<SheetID>0</SheetID>
<SheetKey>String</SheetKey>
<SheetNumber>String</SheetNumber>
<SupersedesSheetID>0</SupersedesSheetID>
<ThumbHash>String</ThumbHash>
<ThumbKey>String</ThumbKey>
<ThumbUrl>String</ThumbUrl>
<Title>String</Title>
<UpdatedAt>0001-01-01T00:00:00</UpdatedAt>
<UpdatedBy>String</UpdatedBy>
<VersionNo>0</VersionNo>
<WidthPt>0</WidthPt>
</Sheet>
</Sheets>
<Source>String</Source>
<SourceLabel>String</SourceLabel>
<Status>String</Status>
<SupersedesName>String</SupersedesName>
<SupersedesPlanSetID>0</SupersedesPlanSetID>
<VersionNo>0</VersionNo>
</PlanSet>
<RemovedSheets>
<Sheet>
<AttachmentId>00000000-0000-0000-0000-000000000000</AttachmentId>
<ChangeKind>String</ChangeKind>
<Confidence>0</Confidence>
<Discipline>String</Discipline>
<ExtractSource>String</ExtractSource>
<HeightPt>0</HeightPt>
<IsCurrent>false</IsCurrent>
<PageIndex>0</PageIndex>
<PinCount>0</PinCount>
<Pins>
<SheetPin>
<CreatedAt>0001-01-01T00:00:00</CreatedAt>
<CreatedBy>String</CreatedBy>
<EntityID>0</EntityID>
<EntityNo>String</EntityNo>
<EntityStatus>String</EntityStatus>
<EntityTitle>String</EntityTitle>
<EntityType>String</EntityType>
<EntityUID>00000000-0000-0000-0000-000000000000</EntityUID>
<InspectionUID>00000000-0000-0000-0000-000000000000</InspectionUID>
<Label>String</Label>
<PlanSetID>0</PlanSetID>
<PlanSetName>String</PlanSetName>
<PlanSetUID>00000000-0000-0000-0000-000000000000</PlanSetUID>
<SheetID>0</SheetID>
<SheetNumber>String</SheetNumber>
<SheetPinID>0</SheetPinID>
<SheetTitle>String</SheetTitle>
<X>0</X>
<Y>0</Y>
</SheetPin>
</Pins>
<PlanSetID>0</PlanSetID>
<PlanSetName>String</PlanSetName>
<PlanSetUID>00000000-0000-0000-0000-000000000000</PlanSetUID>
<ProjectID>0</ProjectID>
<Revision>String</Revision>
<RevisionDate>0001-01-01T00:00:00</RevisionDate>
<SheetID>0</SheetID>
<SheetKey>String</SheetKey>
<SheetNumber>String</SheetNumber>
<SupersedesSheetID>0</SupersedesSheetID>
<ThumbHash>String</ThumbHash>
<ThumbKey>String</ThumbKey>
<ThumbUrl>String</ThumbUrl>
<Title>String</Title>
<UpdatedAt>0001-01-01T00:00:00</UpdatedAt>
<UpdatedBy>String</UpdatedBy>
<VersionNo>0</VersionNo>
<WidthPt>0</WidthPt>
</Sheet>
</RemovedSheets>
<ResponseStatus xmlns:d2p1="http://schemas.servicestack.net/types">
<d2p1:ErrorCode>String</d2p1:ErrorCode>
<d2p1:Message>String</d2p1:Message>
<d2p1:StackTrace>String</d2p1:StackTrace>
<d2p1:Errors>
<d2p1:ResponseError>
<d2p1:ErrorCode>String</d2p1:ErrorCode>
<d2p1:FieldName>String</d2p1:FieldName>
<d2p1:Message>String</d2p1:Message>
<d2p1:Meta xmlns:d5p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d5p1:KeyValueOfstringstring>
<d5p1:Key>String</d5p1:Key>
<d5p1:Value>String</d5p1:Value>
</d5p1:KeyValueOfstringstring>
</d2p1:Meta>
</d2p1:ResponseError>
</d2p1:Errors>
<d2p1:Meta xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d3p1:KeyValueOfstringstring>
<d3p1:Key>String</d3p1:Key>
<d3p1:Value>String</d3p1:Value>
</d3p1:KeyValueOfstringstring>
</d2p1:Meta>
</ResponseStatus>
</PlanSetResponse>