-
-
Save Nagyman/c04507eef554fd647078 to your computer and use it in GitHub Desktop.
Revisions
-
Craig Nagy revised this gist
Jun 19, 2014 . 1 changed file with 14 additions and 6 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -4,10 +4,14 @@ "code": "ARRIVAL_FLIGHT_DETAILS", "message": "Arrival flight number, date, and time are required for this product.", // this is really a developer message "internal": false, "details": [ { "body": "We're missing your flight number", // might be null, so what do we do here? "detail_type": { "id": "30", "label": "Flight Number", "code": "FLIGHT_NUMBER" } } ] }, @@ -19,10 +23,14 @@ "code": "CUSTOMER_INFORMTION", "message": "Information that must be passed along to the customer but is not actionable.", // this is really a developer message "internal": false, "details": [ { "body": "This is a German language trip", // might be null, so what do we do here? "detail_type": { "id": "30", "label": "Trip Language", "code": "LANGUAGE_ADVISORY" } } ] }, -
lesl revised this gist
Jun 19, 2014 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -6,7 +6,7 @@ "internal": false, "notes": [ { "summary": "A short description", // might be null, so what do we do here? "description": "A long description yadda yadda yadda", // might be null } ] @@ -21,7 +21,7 @@ "internal": false, "notes": [ { "summary": "A short description", // might be null, so what do we do here? "description": "A long description yadda yadda yadda", // might be null } ] -
lesl revised this gist
Jun 19, 2014 . 1 changed file with 1 addition and 0 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -3,6 +3,7 @@ "name": "Arrival Flight Details", // client facing name "code": "ARRIVAL_FLIGHT_DETAILS", "message": "Arrival flight number, date, and time are required for this product.", // this is really a developer message "internal": false, "notes": [ { "brief": "A short description", // might be null, so what do we do here? -
lesl revised this gist
Jun 19, 2014 . 1 changed file with 3 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -5,7 +5,7 @@ "message": "Arrival flight number, date, and time are required for this product.", // this is really a developer message "notes": [ { "brief": "A short description", // might be null, so what do we do here? "description": "A long description yadda yadda yadda", // might be null } ] @@ -17,9 +17,10 @@ "name": "Customer Information", // client facing name "code": "CUSTOMER_INFORMTION", "message": "Information that must be passed along to the customer but is not actionable.", // this is really a developer message "internal": false, "notes": [ { "brief": "A short description", // might be null, so what do we do here? "description": "A long description yadda yadda yadda", // might be null } ] -
lesl revised this gist
Jun 19, 2014 . 1 changed file with 16 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -6,7 +6,21 @@ "notes": [ { "short": "A short description", // might be null, so what do we do here? "description": "A long description yadda yadda yadda", // might be null } ] }, // every time, not in incomplete_requirements though // Webhooks would need to update departure when these are created/updated { "type": "INFORMATIONAL", "name": "Customer Information", // client facing name "code": "CUSTOMER_INFORMTION", "message": "Information that must be passed along to the customer but is not actionable.", // this is really a developer message "notes": [ { "short": "A short description", // might be null, so what do we do here? "description": "A long description yadda yadda yadda", // might be null } ] }, -
lesl created this gist
Jun 19, 2014 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,12 @@ { "type": "CHECKIN", "name": "Arrival Flight Details", // client facing name "code": "ARRIVAL_FLIGHT_DETAILS", "message": "Arrival flight number, date, and time are required for this product.", // this is really a developer message "notes": [ { "short": "A short description", // might be null, so what do we do here? "long": "A long description yadda yadda yadda", // might be null } ] }