Interface IPartnerAgentPropertyNotes
Represents the interface for property note-related operations in the Partner Agent API client.
Namespace: PAccess.PartnerAgents.ApiClient.Services.PropertyNotes
Assembly: PAccess.PartnerAgents.ApiClient.dll
Syntax
public interface IPartnerAgentPropertyNotes
Methods
View SourceGetPropertyNotesAsync(int, CancellationToken)
Retrieves the property notes asynchronously.
Declaration
Task<IReadOnlyList<PropertyNoteDetails>> GetPropertyNotesAsync(int id, CancellationToken cancellationToken = default)
Parameters
| Type | Name | Description |
|---|---|---|
| int | id | The id of the property. |
| CancellationToken | cancellationToken | The cancellation token. |
Returns
| Type | Description |
|---|---|
| Task<IReadOnlyList<PropertyNoteDetails>> | A task representing the asynchronous operation that returns the list of property notes. |