Package com.intercom.api.resources.notes
Class AsyncRawNotesClient
- java.lang.Object
-
- com.intercom.api.resources.notes.AsyncRawNotesClient
-
public class AsyncRawNotesClient extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description protected ClientOptionsclientOptions
-
Constructor Summary
Constructors Constructor Description AsyncRawNotesClient(ClientOptions clientOptions)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.concurrent.CompletableFuture<IntercomHttpResponse<Note>>create(CreateContactNoteRequest request)You can add a note to a single contact.java.util.concurrent.CompletableFuture<IntercomHttpResponse<Note>>create(CreateContactNoteRequest request, RequestOptions requestOptions)You can add a note to a single contact.java.util.concurrent.CompletableFuture<IntercomHttpResponse<Note>>find(FindNoteRequest request)You can fetch the details of a single note.java.util.concurrent.CompletableFuture<IntercomHttpResponse<Note>>find(FindNoteRequest request, RequestOptions requestOptions)You can fetch the details of a single note.java.util.concurrent.CompletableFuture<IntercomHttpResponse<SyncPagingIterable<Note>>>list(ListContactNotesRequest request)You can fetch a list of notes that are associated to a contact.java.util.concurrent.CompletableFuture<IntercomHttpResponse<SyncPagingIterable<Note>>>list(ListContactNotesRequest request, RequestOptions requestOptions)You can fetch a list of notes that are associated to a contact.
-
-
-
Field Detail
-
clientOptions
protected final ClientOptions clientOptions
-
-
Constructor Detail
-
AsyncRawNotesClient
public AsyncRawNotesClient(ClientOptions clientOptions)
-
-
Method Detail
-
list
public java.util.concurrent.CompletableFuture<IntercomHttpResponse<SyncPagingIterable<Note>>> list(ListContactNotesRequest request)
You can fetch a list of notes that are associated to a contact.
-
list
public java.util.concurrent.CompletableFuture<IntercomHttpResponse<SyncPagingIterable<Note>>> list(ListContactNotesRequest request, RequestOptions requestOptions)
You can fetch a list of notes that are associated to a contact.
-
create
public java.util.concurrent.CompletableFuture<IntercomHttpResponse<Note>> create(CreateContactNoteRequest request)
You can add a note to a single contact.
-
create
public java.util.concurrent.CompletableFuture<IntercomHttpResponse<Note>> create(CreateContactNoteRequest request, RequestOptions requestOptions)
You can add a note to a single contact.
-
find
public java.util.concurrent.CompletableFuture<IntercomHttpResponse<Note>> find(FindNoteRequest request)
You can fetch the details of a single note.
-
find
public java.util.concurrent.CompletableFuture<IntercomHttpResponse<Note>> find(FindNoteRequest request, RequestOptions requestOptions)
You can fetch the details of a single note.
-
-