The parameters used to create a new version in a branch-versioned feature service. More...
Header: | #include <ServiceVersionParameters.h> |
Since: | Esri::ArcGISRuntime 100.9 |
Inherits: | Esri::ArcGISRuntime::Object |
Public Functions
ServiceVersionParameters(QObject *parent = nullptr) | |
virtual | ~ServiceVersionParameters() override |
Esri::ArcGISRuntime::VersionAccess | access() const |
QString | description() const |
QString | name() const |
void | setAccess(Esri::ArcGISRuntime::VersionAccess access) |
void | setDescription(const QString &description) |
void | setName(const QString &name) |
Detailed Description
Relevant samples:
- Edit with branch versioning: Create, query and edit a specific server version using service geodatabase.
See also ServiceGeodatabase.
Member Function Documentation
[explicit]
ServiceVersionParameters::ServiceVersionParameters (QObject *parent = nullptr)
Create a new ServiceVersionParameters object.
- parent - The optional parent QObject.
The ServiceVersionParameters::access will default to Public.
[override virtual]
ServiceVersionParameters::~ServiceVersionParameters ()
Destructor.
Esri::ArcGISRuntime::VersionAccess ServiceVersionParameters::access() const
Returns the access level of the version.
See also setAccess().
QString ServiceVersionParameters::description() const
Returns the description of the version.
See also setDescription().
QString ServiceVersionParameters::name() const
Returns the name of the version.
The name should be short (less than 64 characters) and not contain any special characters.
See also setName().
void ServiceVersionParameters::setAccess (Esri::ArcGISRuntime::VersionAccess access)
Sets the access to access.
See also access.
void ServiceVersionParameters::setDescription (const QString &description)
Sets the description to description.
See also description.
void ServiceVersionParameters::setName (const QString &name)
Sets the name to name.
See also name.