Touchstone Re 2023 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 GetZoneSetsRequest : RequestBase
public class SubmitImportUnicede2Request : RequestBase
public class UpdateProgramRequest : RequestBase

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

Request Class Property Example
public class CreatePortfolioDynamicRequest : RequestBase
{
  //Creates a dynamic portfolio.
    [DataMember]
  public Portfolio Portfolio { get; set; }
}