Interface Attachment
-
- All Known Implementing Classes:
AssetAttachment
public interface Attachment`AttachmentInterface` for `Attachment` returnable types.
-
-
Method Summary
Modifier and Type Method Description DateTimeScalargetCreatedAt()`DateTime` of the `Attachment` creation.UsergetCreator()The `User` who created the `Attachment` on Frontify.StringScalargetExtension()The `Attachment`'s original file extension.IdScalargetExternalId()The `Attachment`'s External Id.StringScalargetFilename()The `Attachment`'s filename.IdScalargetId()`Attachment` Id.DateTimeScalargetModifiedAt()`DateTime` of the `Attachment`'s last modification.UsergetModifier()The `User` who last modified the `Attachment` on Frontify.StringScalargetName()The `Attachment`'s name or title.BigIntScalargetSize()The `Attachment`'s size in bytes.StringScalargetType()The `Attachment`'s Media (MIME) type.
-
-
-
Method Detail
-
getId
IdScalar getId()
`Attachment` Id.
-
getCreator
User getCreator()
The `User` who created the `Attachment` on Frontify.
-
getCreatedAt
DateTimeScalar getCreatedAt()
`DateTime` of the `Attachment` creation.
-
getModifier
User getModifier()
The `User` who last modified the `Attachment` on Frontify.
-
getModifiedAt
DateTimeScalar getModifiedAt()
`DateTime` of the `Attachment`'s last modification.
-
getFilename
StringScalar getFilename()
The `Attachment`'s filename.
-
getName
StringScalar getName()
The `Attachment`'s name or title.
-
getExtension
StringScalar getExtension()
The `Attachment`'s original file extension.
-
getType
StringScalar getType()
The `Attachment`'s Media (MIME) type.
-
getSize
BigIntScalar getSize()
The `Attachment`'s size in bytes.
-
getExternalId
IdScalar getExternalId()
The `Attachment`'s External Id.
-
-