File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ Java bindings for the [Intercom API](https://api.intercom.io/docs)
1919The distribution is hosted on [ bintray] ( https://bintray.com/intercom/intercom-maven/intercom-java/view ) .
2020To use the client, you can add the jcenter repository to your dependencies.
2121
22- ### maven
22+ ### Maven
2323
2424Add jcenter to your repositories in ` pom.xml ` or ` settings.xml ` :
2525
@@ -42,7 +42,7 @@ and add the project declaration to your `pom.xml`:
4242</dependency >
4343```
4444
45- ### gradle
45+ ### Gradle
4646
4747Add jcenter to your ` repositories ` block:
4848
@@ -60,7 +60,7 @@ dependencies {
6060}
6161```
6262
63- ### sbt
63+ ### SBT
6464
6565Add jcenter to your ` resolvers ` in your ` build.sbt ` :
6666
@@ -551,14 +551,14 @@ for (Counts.CountItem tag : companyTags) {
551551
552552## Idioms
553553
554- ### HTTP requests
554+ ### HTTP requests
555555
556556To signal local versus remote methods, calls that result in HTTP requests are performed
557557using static methods, for example ` User.find() ` . The objects returned by static methods
558558are built from server responses. The exception to the static idiom is where the ` next() ` ,
559559` hasNext() ` and ` nextPage() ` methods on Collections are used to abstract over pagination.
560560
561- ### Pagination
561+ ### Pagination
562562
563563Some API classes have static ` list() ` methods that correspond to paginated API responses.
564564These return a Collection object (eg ` UserCollection ` ) which can be iterated in two
You can’t perform that action at this time.
0 commit comments