Leadpages.Drip.DripDotNet by dripaccounts

<PackageReference Include="Leadpages.Drip.DripDotNet" Version="1.2.0" />

 DripResponse

public class DripResponse
Represents the response received from the Drip REST API. Subclasses of DripResponse contain strongly typed collections of the various resources. This is returned from every method on the DripClient that makes a REST call. This library does not throw exceptions for application level errors returned by the REST API. Check the Errors collection for details on response errors.
public List<DripError> Errors { get; set; }

The collection of application level errors returned from the REST API.

public Dictionary<string, string> Links { get; set; }

Links to resources that are relevant to this response.

public DripMeta Meta { get; set; }

Pagination and query metadata included on resopnses containing lists of items.

public IRestRequest OriginalRequest { get; set; }

The underlying request that was sent You shouldn't need to use this, but it might be helpful for debugging.

public IRestResponse OriginalResponse { get; set; }

The underlying response that was received. You shouldn't need to use this, but it might be helpful for debugging.

public HttpStatusCode StatusCode { get; set; }

The Http status code returned with the response. This library does not throw exceptions for application level errors returned by the REST API. Check the Errors collection for details on response errors.

public DripResponse()

public bool HasErrors()

A quick way to check if this DripResponse contains errors. This library does not throw exceptions for application level errors returned by the REST API. Check the Errors collection for details on response errors.

public bool HasSuccessStatusCode()