-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #65 from mayorJAY/fix-open-issues
Fix bugs in Response signatures
- Loading branch information
Showing
57 changed files
with
622 additions
and
490 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,9 @@ | ||
package co.novu.dto | ||
|
||
import com.google.gson.annotations.SerializedName | ||
|
||
data class ApiKeys( | ||
var key: String? = null, | ||
var _userId: String? = null | ||
@SerializedName("_userId") | ||
var userId: String? = null | ||
) |
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 |
---|---|---|
@@ -1,7 +1,10 @@ | ||
package co.novu.dto | ||
|
||
import com.google.gson.annotations.SerializedName | ||
|
||
data class Channel( | ||
val credentials: ChannelCredentials? = null, | ||
val providerId: String? = null, | ||
val _integrationId: String? = null | ||
@SerializedName("_integrationId") | ||
val integrationId: String? = null | ||
) |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,19 @@ | ||
package co.novu.dto | ||
|
||
import com.google.gson.annotations.SerializedName | ||
|
||
data class NotificationGroup( | ||
val _id: String? = null, | ||
@SerializedName("_id") | ||
val id: String? = null, | ||
val name: String? = null, | ||
val _organizationId: String? = null, | ||
val _environmentId: String? = null, | ||
val _parentId: String? = null, | ||
@SerializedName("_organizationId") | ||
val organizationId: String? = null, | ||
@SerializedName("_environmentId") | ||
val environmentId: String? = null, | ||
@SerializedName("_parentId") | ||
val parentId: String? = null, | ||
val createdAt: String? = null, | ||
val updatedAt: String? = null, | ||
val __v: String? = null | ||
@SerializedName("__v") | ||
val version: String? = null | ||
) |
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 |
---|---|---|
@@ -1,15 +1,20 @@ | ||
package co.novu.dto | ||
|
||
import com.google.gson.annotations.SerializedName | ||
|
||
data class Step( | ||
val _id: String? = null, | ||
val _templateId: String? = null, | ||
@SerializedName("_id") | ||
val id: String? = null, | ||
@SerializedName("_templateId") | ||
val templateId: String? = null, | ||
val uuid: String? = null, | ||
val name: String? = null, | ||
val active: Boolean? = null, | ||
val shouldStopOnFail: Boolean? = null, | ||
val template: Any? = null, | ||
val filters: List<Filters>? = null, | ||
val _parentId: String? = null, | ||
@SerializedName("_parentId") | ||
val parentId: String? = null, | ||
val metadata: Metadata? = null, | ||
val replyCallback: Any? = null | ||
) |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,9 @@ | ||
package co.novu.dto | ||
|
||
import com.google.gson.annotations.SerializedName | ||
|
||
data class Variables( | ||
var name: String? = null, | ||
var _id: String? = null | ||
@SerializedName("_id") | ||
var id: String? = null | ||
) |
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 was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,15 +1,20 @@ | ||
package co.novu.dto.blueprints | ||
|
||
import com.google.gson.annotations.SerializedName | ||
|
||
data class Step( | ||
val _id: String? = null, | ||
val _templateId: String? = null, | ||
@SerializedName("_id") | ||
val id: String? = null, | ||
@SerializedName("_templateId") | ||
val templateId: String? = null, | ||
val uuid: String? = null, | ||
val name: String? = null, | ||
val active: Boolean? = null, | ||
val shouldStopOnFail: Boolean? = null, | ||
val template: Any? = null, | ||
val filters: Any? = null, | ||
val _parentId: String? = null, | ||
@SerializedName("_parentId") | ||
val parentId: String? = null, | ||
val metadata: Any? = null, | ||
val replyCallback: Any? = null | ||
) |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
Oops, something went wrong.