-
Notifications
You must be signed in to change notification settings - Fork 114
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* 10.0.0 features added * Fixed objective C styles * Updated CHANGELOG.md and README.md
- Loading branch information
1 parent
b6fda69
commit fd968d9
Showing
25 changed files
with
601 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
28 changes: 28 additions & 0 deletions
28
intercom-plugin/src/android/HelpCenterCollectionContentModel.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
package io.intercom.android.sdk; | ||
|
||
import java.util.List; | ||
|
||
import io.intercom.android.sdk.helpcenter.sections.HelpCenterArticle; | ||
import io.intercom.android.sdk.helpcenter.sections.HelpCenterSection; | ||
|
||
public class HelpCenterCollectionContentModel { | ||
private String collectionId; | ||
private List<HelpCenterArticle> articles; | ||
private List<HelpCenterCollectionSectionModel> sections; | ||
private String summary; | ||
private String title; | ||
|
||
public HelpCenterCollectionContentModel( | ||
String collectionId, | ||
List<HelpCenterArticle> articles, | ||
List<HelpCenterCollectionSectionModel> sections, | ||
String summary, | ||
String title | ||
) { | ||
this.collectionId = collectionId; | ||
this.articles = articles; | ||
this.sections = sections; | ||
this.summary = summary; | ||
this.title = title; | ||
} | ||
} |
17 changes: 17 additions & 0 deletions
17
intercom-plugin/src/android/HelpCenterCollectionModel.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
package io.intercom.android.sdk; | ||
|
||
public class HelpCenterCollectionModel { | ||
private String collectionId; | ||
private String summary; | ||
private String title; | ||
|
||
public HelpCenterCollectionModel( | ||
String collectionId, | ||
String summary, | ||
String title | ||
) { | ||
this.collectionId = collectionId; | ||
this.summary = summary; | ||
this.title = title; | ||
} | ||
} |
18 changes: 18 additions & 0 deletions
18
intercom-plugin/src/android/HelpCenterCollectionSectionModel.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
package io.intercom.android.sdk; | ||
|
||
import java.util.List; | ||
|
||
import io.intercom.android.sdk.helpcenter.sections.HelpCenterArticle; | ||
|
||
class HelpCenterCollectionSectionModel { | ||
private List<HelpCenterArticle> articles; | ||
private String title; | ||
|
||
public HelpCenterCollectionSectionModel( | ||
List<HelpCenterArticle> articles, | ||
String title | ||
) { | ||
this.articles = articles; | ||
this.title = title; | ||
} | ||
} |
Oops, something went wrong.