-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #10 from zoho/beta
Beta
- Loading branch information
Showing
110 changed files
with
4,117 additions
and
3,502 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
/samples export-ignore | ||
/class_hierarchy.png export-ignore |
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
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
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
14 changes: 14 additions & 0 deletions
14
src/com/zoho/crm/api/attachments/DeleteAttachmentsParam.php
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,14 @@ | ||
<?php | ||
namespace com\zoho\crm\api\attachments; | ||
|
||
use com\zoho\crm\api\Param; | ||
|
||
class DeleteAttachmentsParam | ||
{ | ||
|
||
public static final function ids() | ||
{ | ||
return new Param('ids', 'com.zoho.crm.api.Attachments.DeleteAttachmentsParam'); | ||
|
||
} | ||
} |
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,24 @@ | ||
<?php | ||
namespace com\zoho\crm\api\attachments; | ||
|
||
use com\zoho\crm\api\Param; | ||
|
||
class GetAttachmentsParam | ||
{ | ||
|
||
public static final function fields() | ||
{ | ||
return new Param('fields', 'com.zoho.crm.api.Attachments.GetAttachmentsParam'); | ||
|
||
} | ||
public static final function page() | ||
{ | ||
return new Param('page', 'com.zoho.crm.api.Attachments.GetAttachmentsParam'); | ||
|
||
} | ||
public static final function perPage() | ||
{ | ||
return new Param('per_page', 'com.zoho.crm.api.Attachments.GetAttachmentsParam'); | ||
|
||
} | ||
} |
14 changes: 14 additions & 0 deletions
14
src/com/zoho/crm/api/attachments/UploadLinkAttachmentParam.php
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,14 @@ | ||
<?php | ||
namespace com\zoho\crm\api\attachments; | ||
|
||
use com\zoho\crm\api\Param; | ||
|
||
class UploadLinkAttachmentParam | ||
{ | ||
|
||
public static final function attachmentUrl() | ||
{ | ||
return new Param('attachmentUrl', 'com.zoho.crm.api.Attachments.UploadLinkAttachmentParam'); | ||
|
||
} | ||
} |
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
Oops, something went wrong.