developers_monetization_config
Creates, updates, deletes, gets or lists a developers_monetization_config
resource.
Overview
Name | developers_monetization_config |
Type | Resource |
Id | google.apigee.developers_monetization_config |
Fields
Name | Datatype | Description |
---|---|---|
billingType | string | Billing type. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
organizations_developers_get_monetization_config | SELECT | developersId, organizationsId | Gets the monetization configuration for the developer. |
organizations_developers_update_monetization_config | REPLACE | developersId, organizationsId | Updates the monetization configuration for the developer. |
SELECT
examples
Gets the monetization configuration for the developer.
SELECT
billingType
FROM google.apigee.developers_monetization_config
WHERE developersId = '{{ developersId }}'
AND organizationsId = '{{ organizationsId }}';
REPLACE
example
Replaces all fields in the specified developers_monetization_config
resource.
/*+ update */
REPLACE google.apigee.developers_monetization_config
SET
billingType = '{{ billingType }}'
WHERE
developersId = '{{ developersId }}'
AND organizationsId = '{{ organizationsId }}';