Skip to content

AirtableApiResponse

ngocnicholas edited this page Mar 7, 2023 · 4 revisions

AirtableApiResponse Class

Namespace: AirtableApiClient

Assembly: AirtableApiClient.dll

Syntax

public abstract class AirtableApiResponse

The AirtableApiResponseexposes the following members.

Constructors

'protected' because AirtableApiResponse is an abstract class

Name Description
AirtableApiResponse() initializes the members of the base class when a derived class is instantiated.
AirtableApiResponse(AirtableApiException) initializes the members of the base class when a derived class is instantiated.

Properties

Name Description
Success gets the result of the operation
AirtableApiError gets the exception caught, if any, in the operation

AirtableGetUserIdAndScopesResponse Class

Namespace: AirtableApiClient

Assembly: AirtableApiClient.dll

Syntax

public class AirtableGetUserIdAndScopesResponse: AirtableApiResponse

The AirtableGetUserIdAndScopesResponse type exposes the following members.

Constructor

Name Description
AirtableGetUserIdAndScopesResponse(AirtableApiException) Initializes an instance of AirtableGetUserIdAndScopesResponse
AirtableGetUserIdAndScopesResponse (UserIdAndScopes) Initializes an instance of AirtableGetUserIdAndScopesResponse

Properties

Name Description
UserId gets the user ID of the access token
Scopes gets the scopes granted to the access token. The scopes control what actions a token can perform.

AirtableListRecordsResponse Class

Namespace: AirtableApiClient

Assembly: AirtableApiClient.dll

Syntax

public class AirtableListRecordsResponse: AirtableApiResponse

The AirtableListRecordsResponse type exposes the following members.

Constructor

Name Description
AirtableListRecordsResponse (AirtableApiException) Initializes an instance of AirtableListRecordsResponse
AirtableListRecordsResponse (AirtableRecordList) Initializes an instance of AirtableListRecordsResponse

Properties

Name Description
Records gets the record list
Offset gets the offset for the next page of the record list

AirtableRetrieveRecordResponse Class

Namespace: AirtableApiClient

Assembly: AirtableApiClient.dll

Syntax

public class AirtableRetrieveRecordResponse : AirtableApiResponse

The AirtableRetrieveRecordResponse type exposes the following members.

Constructors

Name Description
AirtableRetrieveRecordResponse (AirtableApiException) Initializes an instance of AirtableRetrieveRecordResponse
AirtableRetrieveRecordResponse (AirtableRecord) Initializes an instance of AirtableRetrieveRecordResponse

Properties

Name Description
Record gets the record retrieved

AirtableCreateUpdateReplaceRecordResponse Class

Namespace: AirtableApiClient

Assembly: AirtableApiClient.dll

Syntax

public class AirtableCreateUpdateReplaceRecordResponse : AirtableApiResponse

The AirtableCreateUpdateReplaceRecordResponse type exposes the following members.

Constructors

Name Description
AirtableCreateUpdateReplaceRecordResponse (AirtableApiException) Initializes an instance of AirtableCreateUpdateReplaceRecordResponse
AirtableCreateUpdateReplaceRecordResponse (AirtableRecord) Initializes an instance of AirtableCreateUpdateReplaceRecordResponse

Properties

Name Description
Record gets the record created, updated, or replaced in the operation

AirtableDeleteRecordResponse Class

Namespace: AirtableApiClient

Assembly: AirtableApiClient.dll

Syntax

public class AirtableDeleteRecordResponse : AirtableApiResponse

The AirtableDeleteRecordResponse type exposes the following members.

Constructors

Name Description
AirtableDeleteRecordResponse (AirtableApiException) Initializes an instance of AirtableDeleteRecordResponse
AirtableDeleteRecordResponse (bool, string) Initializes an instance of AirtableDeleteRecordResponse

Properties

Name Description
Deleted gets the status of the record
Id ID of the supposed deleted record

AirtableDeleteCommentResponse Class

Namespace: AirtableApiClient

Assembly: AirtableApiClient.dll

Syntax

public class AirtableDeleteCommentResponse : AirtableApiResponse

The AirtableDeleteCommentResponse type exposes the following members.

Constructors

Name Description
AirtableDeleteCommentResponse (AirtableApiException) Initializes an instance of AirtableDeleteCommentResponse
AirtableDeleteCommentResponse (bool, string) Initializes an instance of AirtableDeleteCommentResponse

Properties

Name Description
Deleted gets the status of the comment
Id ID of the supposed deleted comment

AirtableCreateUpdateCommentResponse Class

Namespace: AirtableApiClient

Assembly: AirtableApiClient.dll

Syntax

public class AirtableCreateUpdateCommentResponse: AirtableApiResponse

The AirtableCreateUpdateCommentResponse type exposes the following members.

Constructor

Name Description
AirtableCreateUpdateCommentResponse(AirtableApiException) Initializes an instance of AirtableCreateUpdateCommentResponse
AirtableCreateUpdateCommentResponse(AirtableRecordList) Initializes an instance of AirtableCreateUpdateCommentResponse

Properties

Name Description
Comment gets the created/updated comment of the record

AirtableListCommentsResponse Class

Namespace: AirtableApiClient

Assembly: AirtableApiClient.dll

Syntax

public class AirtableListCommentsResponse : AirtableApiResponse

The AirtableListCommentsResponse type exposes the following members.

Constructor

Name Description
AirtableListCommentsResponse (AirtableApiException) Initializes an instance of AirtableListCommentsResponse
AirtableListCommentsResponse (CommentList) Initializes an instance of AirtableListCommentsResponse

Properties

Name Description
CommentList gets the comment list of the record
Offset gets the offset for the next page of the comment list
Clone this wiki locally