Touchstone 11.0 API Reference
Request Objects
Overview > Request / Response Model > Request Objects

Each request object takes the form of the following examples:

Request Object Examples
public class GetDataServersRequest : RequestBase
public class SubmitCreateDatabaseRequest : RequestBase
public class UpdateExposureSetRequest : RequestBase

The request classes expose properties that get or set the data passed into the methods, for example:

Request Class Property Example
public class SubmitCreateDatabaseRequest : RequestBase
{
  //Sets or updates the name of the database.
    [DataMember]
  public Database Database { get; set; }
}