Skip to content

Commit

Permalink
Remove internal in BasicCard
Browse files Browse the repository at this point in the history
Removing internals in BasicCard() to fix issue ticketmaster#55
  • Loading branch information
MEth0 authored Jun 14, 2018
1 parent e7f4383 commit 50fa10c
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions sdk/src/main/java/com/tmsdurham/actions/ResponseBuilder.kt
Original file line number Diff line number Diff line change
Expand Up @@ -287,12 +287,12 @@ data class RichResponse(
* Ordered list of buttons to show below card. Optional.
* @type {Array<Button>}
*/
data class BasicCard(internal var title: String = "",
internal var formattedText: String = "",
internal var subtitle: String? = null,
internal var image: Image? = null,
internal var imageDisplayOptions: ImageDisplays? = null,
internal var buttons: MutableList<Button> = mutableListOf()) {
data class BasicCard(var title: String = "",
var formattedText: String = "",
var subtitle: String? = null,
var image: Image? = null,
var imageDisplayOptions: ImageDisplays? = null,
var buttons: MutableList<Button> = mutableListOf()) {

/**
* Sets the title for this Basic Card.
Expand Down

0 comments on commit 50fa10c

Please sign in to comment.