ExecuteChangesRequest Element

System.Object
  ExecuteChangesRequest
Client Declaration
  public class ExecuteChangesRequest
Represents the input for an ExecuteChanges operation.

Element Structure

Elements
  • ChangeRequestType[] ChangeRequest: [request] Optional element specifying an array of change requests.
Attributes
  • Boolean refresh: [request] Optional expression specifying whether or not a refreshed object is returned after an ExecuteChanges operation is performed on the object (true) or not (false).
Attributes Specific to .NET Clients
  • Boolean refreshSpecified: Optional expression specifying whether refresh has a value (true) or not (false).

XML Schema

<xsd:element name="ExecuteChangesRequest">
   <xsd:complexType>
      <xsd:sequence>
         <xsd:element name="ChangeRequest" type="ChangeRequestType" minOccurs="0" maxOccurs="unbounded"/>
      </xsd:sequence>
      <xsd:attribute name="refresh" type="xsd:boolean"/>
   </xsd:complexType>
</xsd:element>