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