Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
tawoe committed Mar 12, 2019
1 parent e8137cd commit 7b2a96d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3134,7 +3134,7 @@ object SwaggerDefinitionsJSON {
val contactDetailsJson = ContactDetailsJson(
name = "Simon ",
mobile_phone = "+44 07972 444 876",
email_addresse = "[email protected]"
email_address = "[email protected]"
)

val inviteeJson = InviteeJson(
Expand Down
4 changes: 2 additions & 2 deletions obp-api/src/main/scala/code/api/v3_1_0/APIMethods310.scala
Original file line number Diff line number Diff line change
Expand Up @@ -2998,11 +2998,11 @@ trait APIMethods310 {
customerToken =""
staffToken = ""

creator = ContactDetails(createMeetingJson.creator.name,createMeetingJson.creator.mobile_phone,createMeetingJson.creator.email_addresse)
creator = ContactDetails(createMeetingJson.creator.name,createMeetingJson.creator.mobile_phone,createMeetingJson.creator.email_address)
invitees = createMeetingJson.invitees.map(
invitee =>
Invitee(
ContactDetails(invitee.contact_details.name, invitee.contact_details.mobile_phone,invitee.contact_details.email_addresse),
ContactDetails(invitee.contact_details.name, invitee.contact_details.mobile_phone,invitee.contact_details.email_address),
invitee.status))
(meeting, callContext) <- NewStyle.function.createMeeting(
bank.bankId,
Expand Down
6 changes: 3 additions & 3 deletions obp-api/src/main/scala/code/api/v3_1_0/JSONFactory3.1.0.scala
Original file line number Diff line number Diff line change
Expand Up @@ -437,9 +437,9 @@ case class ProductCollectionJsonTreeV310(collection_code: String,
products: List[ProductJsonV310])

case class ContactDetailsJson(
name: String,
mobile_phone: String,
email_addresse: String
name: String,
mobile_phone: String,
email_address: String
)

case class InviteeJson(
Expand Down

0 comments on commit 7b2a96d

Please sign in to comment.