get('sourceId'); if (!$sourceId && $this->hasId()) { $sourceId = $this->getId(); } return $sourceId; } /** * A storage. */ public function getStorage(): ?string { return $this->get('storage'); } /** * A file name. */ public function getName(): ?string { return $this->get('name'); } /** * A size in bytes. */ public function getSize(): ?int { return $this->get('size'); } /** * A mime-type. */ public function getType(): ?string { return $this->get('type'); } /** * A field the attachment is related through. */ public function getTargetField(): ?string { return $this->get('field'); } public function getParent(): ?LinkParent { /** @var ?LinkParent */ return $this->getValueObject('parent'); } public function getRelated(): ?LinkParent { /** @var ?LinkParent */ return $this->getValueObject('related'); } public function getParentType(): ?string { return $this->get('parentType'); } public function getRelatedType(): ?string { return $this->get('relatedType'); } public function isBeingUploaded(): bool { return (bool) $this->get('isBeingUploaded'); } /** * A role. */ public function getRole(): ?string { return $this->get('role'); } /** * Multiple attachment can refer to one file. Source ID is an original attachment. */ public function setSourceId(?string $sourceId): self { $this->set('sourceId', $sourceId); return $this; } public function setName(?string $name): self { $this->set('name', $name); return $this; } public function setType(?string $type): self { $this->set('type', $type); return $this; } public function setRole(?string $type): self { $this->set('role', $type); return $this; } public function setSize(?int $size): self { $this->set('size', $size); return $this; } public function setContents(?string $contents): self { $this->set('contents', $contents); return $this; } public function setTargetField(?string $field): self { $this->set('field', $field); return $this; } public function setParent(?LinkParent $parent): self { $this->setValueObject('parent', $parent); return $this; } public function setRelated(?LinkParent $related): self { $this->setValueObject('related', $related); return $this; } }