Skip to content

Commit

Permalink
Merge pull request #20 from willitscale/master
Browse files Browse the repository at this point in the history
Added the JsonNumberValueTooLarge failure critera...
  • Loading branch information
romanpitak committed Oct 26, 2015
2 parents 837999a + 5cc3874 commit 285f66a
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/DataTypes/ApiTransactionalDataImportFaultReason.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ final class ApiTransactionalDataImportFaultReason extends Enum
const CONTACT_EMAIL_DOES_NOT_EXIST = 'ContactEmailDoesNotExist';
const JSON_KEY_TOO_LONG = 'JsonKeyTooLong';
const JSON_KEY_INVALID_CHARACTERS = 'JsonKeyInvalidCharacters';
const JSON_NUMBER_VALUE_TOO_LARGE = 'JsonNumberValueTooLarge';
const JSON_VALUE_TOO_LONG = 'JsonValueTooLong';
const JSON_VALUE_INCOMPATIBLE_WITH_SCHEMA = 'JsonValueIncompatibleWithSchema';
const NOT_AVAILABLE_IN_THIS_VERSION = 'NotAvailableInThisVersion';
Expand All @@ -43,6 +44,7 @@ protected function getPossibleValues()
self::CONTACT_EMAIL_DOES_NOT_EXIST,
self::JSON_KEY_TOO_LONG,
self::JSON_KEY_INVALID_CHARACTERS,
self::JSON_NUMBER_VALUE_TOO_LARGE,
self::JSON_VALUE_TOO_LONG,
self::JSON_VALUE_INCOMPATIBLE_WITH_SCHEMA,
self::NOT_AVAILABLE_IN_THIS_VERSION
Expand Down

0 comments on commit 285f66a

Please sign in to comment.