Skip to content

Commit

Permalink
Change type names to avoid Swagger parsing errors
Browse files Browse the repository at this point in the history
  • Loading branch information
jlevers committed Feb 23, 2021
1 parent d15318f commit 527464a
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# AttributeSetListType
# AttributeSet

## Properties
Name | Type | Description | Notes
Expand Down
2 changes: 1 addition & 1 deletion docs/Model/SalesRankType.md → docs/Model/SalesRank.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SalesRankType
# SalesRank

## Properties
Name | Type | Description | Notes
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
/**
* AttributeSetListType
* AttributeSet
*
* PHP version 5
*
Expand Down Expand Up @@ -33,15 +33,15 @@
use \Evers\SellingPartnerApi\ObjectSerializer;

/**
* AttributeSetListType Class Doc Comment
* AttributeSet Class Doc Comment
*
* @category Class
* @description The attributes of the item.
* @package Evers\SellingPartnerApi
* @author Swagger Codegen team
* @link https://github.com/swagger-api/swagger-codegen
*/
class AttributeSetListType implements ModelInterface, ArrayAccess
class AttributeSet implements ModelInterface, ArrayAccess
{
const DISCRIMINATOR = null;

Expand All @@ -50,7 +50,7 @@ class AttributeSetListType implements ModelInterface, ArrayAccess
*
* @var string
*/
protected static $swaggerModelName = 'AttributeSetListType';
protected static $swaggerModelName = 'AttributeSet';

/**
* Array of property to type mappings. Used for (de)serialization
Expand Down
8 changes: 4 additions & 4 deletions lib/Model/SalesRankType.php → lib/Model/SalesRank.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
/**
* SalesRankType
* SalesRank
*
* PHP version 5
*
Expand Down Expand Up @@ -33,14 +33,14 @@
use \Evers\SellingPartnerApi\ObjectSerializer;

/**
* SalesRankType Class Doc Comment
* SalesRank Class Doc Comment
*
* @category Class
* @package Evers\SellingPartnerApi
* @author Swagger Codegen team
* @link https://github.com/swagger-api/swagger-codegen
*/
class SalesRankType implements ModelInterface, ArrayAccess
class SalesRank implements ModelInterface, ArrayAccess
{
const DISCRIMINATOR = null;

Expand All @@ -49,7 +49,7 @@ class SalesRankType implements ModelInterface, ArrayAccess
*
* @var string
*/
protected static $swaggerModelName = 'SalesRankType';
protected static $swaggerModelName = 'SalesRank';

/**
* Array of property to type mappings. Used for (de)serialization
Expand Down

0 comments on commit 527464a

Please sign in to comment.