InternalLoad method

Future<void> InternalLoad(
  1. BodyType? bodyType,
  2. Iterable<PropertyDefinitionBase>? additionalProperties
)
Load the attachment. Type of the body. The additional properties.

Implementation

Future<void> InternalLoad(BodyType? bodyType,
    Iterable<PropertyDefinitionBase>? additionalProperties) {
  return this._service.GetAttachment(this, bodyType, additionalProperties);
}