Request Constructor (DynamicJsonObject) |
Create a new Request for the specified collection. (ie Defect.Tasks)
The collection should have a _ref property.
Namespace: Rally.RestApiAssembly: Rally.RestApi (in Rally.RestApi.dll) Version: 3.1.1.0 (3.1.1.0)
Syntax public Request(
DynamicJsonObject collection
)
Public Sub New (
collection As DynamicJsonObject
)
public:
Request(
DynamicJsonObject^ collection
)
new :
collection : DynamicJsonObject -> Request
Parameters
- collection
- Type: Rally.RestApi.JsonDynamicJsonObject
The object containing the collection ref
Examples DynamicJsonObject collection = new DynamicJsonObject();
collection["_ref"] = "/hierarchicalrequirement/12345/defect.js";
Request request = new Request(collection);
See Also