getConfiguration static method

XmlDocumentFragment getConfiguration(
  1. String profileToken
)

XML for the getConfiguration, requires a profileToken

Implementation

static XmlDocumentFragment getConfiguration(String profileToken) {
  builder.element('GetConfiguration', nest: () {
    builder.namespace(Xmlns.tptz);

    ReferenceToken(profileToken).buildXml(
      builder,
      tag: 'PTZConfigurationToken',
    );
  });

  return builder.buildFragment();
}