RetainerInvoicesComments
List comments of Retainer Invoice.
Table Specific Information
Select
The 本製品 will use the Zoho Inventory API to process WHERE clause conditions built with the following column and operator. The rest of the filter is executed client-side within the 本製品.
- Id supports the '=' comparison.
- RetainerInvoiceId supports the '=' comparison.
For example, the following queries are processed server side:
SELECT * FROM RetainerInvoicesComments WHERE Id = '3350895000000089001'
Insert
Insert can be executed by specifying the CustomerId and LineItems column. The columns that are not read-only can be inserted optionally. Following is an example of how to insert into this table.
INSERT INTO RetainerInvoicesComments (Description) VALUES ('description')
Update
Update can be executed by specifying the Id, CustomerId and LineItems in the WHERE Clause. The columns that are not read-only can be Updated.
For example:
UPDATE RetainerInvoicesComments SET Description = 'desc' WHERE Id = 1234
Delete
Delete can be executed by specifying the Id in the WHERE Clause
For example:
DELETE FROM RetainerInvoicesComments WHERE Id = '3350895000000089001'
Columns
Name | Type | ReadOnly | References | Description |
Id [KEY] | Long | True |
Id of the comment. | |
CommentType | String | False |
Comment Type. | |
CommentedBy | String | False |
Commented By. | |
CommentedById | Long | True |
Commented By Id. | |
Date | Date | False |
Date. | |
DateDescription | String | False |
Date Description. | |
Description | String | False |
Description. | |
OperationType | String | False |
Operation Type. | |
RetainerInvoiceId [KEY] | Long | False |
RetainerInvoice Id. | |
Time | Datetime | False |
Time. | |
TransactionId | String | True |
Transaction Id. | |
TransactionType | String | False |
Transaction Type. |