Skip to content

Commit

Permalink
Merge pull request #2 from Vantiv/13.1
Browse files Browse the repository at this point in the history
Update to v13.1
  • Loading branch information
VantivSDK authored Aug 3, 2020
2 parents 2026111 + dbf4d46 commit 7795b72
Show file tree
Hide file tree
Showing 11 changed files with 2,245 additions and 5 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
CHANGELOG
---------

## 13.1.0 (April 27, 2020)
* **Feature** Support for Payfac MP API v13.1

## 13.0.1 (February 6, 2020)
* **BugFix** original Legal Entity camel casing is corrected.

Expand Down
53 changes: 53 additions & 0 deletions src/generated/LegalEntityAgreementCreateRequestType.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,16 @@ class LegalEntityAgreementCreateRequestType
*/
public $legalEntityAgreement = null;

/**
* @property string $sdkVersion
*/
public $sdkVersion = null;

/**
* @property string $language
*/
public $language = null;

/**
* Gets as legalEntityAgreement
*
Expand All @@ -38,6 +48,49 @@ public function setLegalEntityAgreement(\src\generated\LegalEntityAgreementType
return $this;
}

/**
*Gets as sdkVersion
*
* @return string
*/
public function getSdkVersion()
{
return $this->sdkVersion;
}

/**
* Sets a new sdkVersion
*
* @param string $sdkVersion
* @return self
*/
public function setSdkVersion($sdkVersion)
{
$this->sdkVersion = $sdkVersion;
return $this;
}

/**
*Gets as language
*
* @return string
*/
public function getLanguage()
{
return $this->language;
}

/**
* Sets a new language
*
* @param string $language
* @return self
*/
public function setLanguage($language)
{
$this->language = $language;
}


}

69 changes: 69 additions & 0 deletions src/generated/LegalEntityCreateRequestType.php
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,16 @@ class LegalEntityCreateRequestType
*/
public $yearsInBusiness = null;

/**
* @property string $sdkVersion
*/
public $sdkVersion = null;

/**
* @property string $language
*/
public $language = null;

/**
* Gets as legalEntityName
*
Expand Down Expand Up @@ -308,6 +318,65 @@ public function setYearsInBusiness($yearsInBusiness)
return $this;
}

/**
*Gets as sdkVersion
*
* @return string
*/
public function getSdkVersion()
{
return $this->sdkVersion;
}


public function setYearsInBusiness($yearsInBusiness)
{
$this->yearsInBusiness = $yearsInBusiness;
return $this;
}

/**
*Gets as sdkVersion
*
* @return string
*/
public function getSdkVersion()
{
return $this->sdkVersion;
}

/**
* Sets a new sdkVersion
*
* @param string $sdkVersion
* @return self
*/
public function setSdkVersion($sdkVersion)
{
$this->sdkVersion = $sdkVersion;
return $this;
}

/**
*Gets as language
*
* @return string
*/
public function getLanguage()
{
return $this->language;
}

/**
* Sets a new language
*
* @param string $language
* @return self
*/
public function setLanguage($language)
{
$this->language = $language;
}

}

52 changes: 52 additions & 0 deletions src/generated/LegalEntityPrincipalCreateRequestType.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,16 @@ class LegalEntityPrincipalCreateRequestType
*/
public $principal = null;

/**
* @property string $sdkVersion
*/
public $sdkVersion = null;

/**
* @property string $language
*/
public $language = null;

/**
* Gets as principal
*
Expand All @@ -38,6 +48,48 @@ public function setPrincipal(\src\generated\LegalEntityPrincipalType $principal)
return $this;
}

/**
*Gets as sdkVersion
*
* @return string
*/
public function getSdkVersion()
{
return $this->sdkVersion;
}

/**
* Sets a new sdkVersion
*
* @param string $sdkVersion
* @return self
*/
public function setSdkVersion($sdkVersion)
{
$this->sdkVersion = $sdkVersion;
return $this;
}

/**
*Gets as language
*
* @return string
*/
public function getLanguage()
{
return $this->language;
}

/**
* Sets a new language
*
* @param string $language
* @return self
*/
public function setLanguage($language)
{
$this->language = $language;
}

}

54 changes: 54 additions & 0 deletions src/generated/SubMerchantCreateRequestType.php
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,16 @@ class SubMerchantCreateRequestType
*/
public $settlementCurrency = null;

/**
* @property string $sdkVersion
*/
public $sdkVersion = null;

/**
* @property string $language
*/
public $language = null;

/**
* Gets as merchantName
*
Expand Down Expand Up @@ -605,6 +615,50 @@ public function setSettlementCurrency($settlementCurrency)
return $this;
}

/**
*Gets as sdkVersion
*
* @return string
*/
public function getSdkVersion()
{
return $this->sdkVersion;
}

/**
* Sets a new sdkVersion
*
* @param string $sdkVersion
* @return self
*/
public function setSdkVersion($sdkVersion)
{
$this->sdkVersion = $sdkVersion;
return $this;
}

/**
*Gets as language
*
* @return string
*/
public function getLanguage()
{
return $this->language;
}

/**
* Sets a new language
*
* @param string $language
* @return self
*/
public function setLanguage($language)
{
$this->language = $language;
}



}

Loading

0 comments on commit 7795b72

Please sign in to comment.