Each response object takes the form of the following examples:
Response Object Examples | |
---|---|
public class GetZoneSetsResponse : ResponseBase public class SubmitImportUnicede2Response : ResponseBase public class UpdateProgramResponse : ResponseBase |
The response classes expose properties that get or set the data returned by the methods, for example:
Response Class Property Example | |
---|---|
// Returns the portfolio object. public class SubmitCreateDatabaseResponse : ResponseBase { // Gets or sets the Activity SID. // The Activity SID is a Touchstone-generated integer // Sequential Identifier that tracks the status of an activity. [DataMember] public int ActivitySid { get; set; } } |