Class StandardResponse<InnerType> (1.60.0)

public sealed class StandardResponse<InnerType>

Calls to Google Api return StandardResponses as Json with two properties Data, being the return type of the method called and Error, being any errors that occure.

Inheritance

object > StandardResponse<InnerType>

Namespace

GoogleApisUtil

Assembly

Google.Apis.Core.dll

Type Parameter

NameDescription
InnerType

Properties

Data

public InnerType Data { get; set; }

May be null if call failed.

Property Value
TypeDescription
InnerType

Error

public RequestError Error { get; set; }

May be null if call succedded.

Property Value
TypeDescription
RequestError

Extension Method