-
Notifications
You must be signed in to change notification settings - Fork 81
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
pipedrive-bot
committed
May 24, 2022
1 parent
2df5a11
commit 249bd52
Showing
3 changed files
with
29 additions
and
4 deletions.
There are no files selected for viewing
This file contains 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 characters
This file contains 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 characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
class AnyOfRecents { | ||
/** | ||
* Constructs a new <code>AnyOfRecents</code>. | ||
* @alias module:model/AnyOfRecents | ||
*/ | ||
constructor() { | ||
AnyOfRecents.initialize(this); | ||
} | ||
|
||
/** | ||
* Initializes the fields of this object. | ||
* This method is used by the constructors of any subclasses, in order to implement multiple inheritance (mix-ins). | ||
* Only for internal use. | ||
*/ | ||
static initialize(obj) {} | ||
|
||
static constructFromObject(data, obj) { | ||
return data; | ||
} | ||
} | ||
|
||
|
||
|
||
export default AnyOfRecents; | ||
|
This file contains 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 characters