Skip to main content

developers_monetization_config

Creates, updates, deletes, gets or lists a developers_monetization_config resource.

Overview

Namedevelopers_monetization_config
TypeResource
Idgoogle.apigee.developers_monetization_config

Fields

NameDatatypeDescription
billingTypestringBilling type.

Methods

NameAccessible byRequired ParamsDescription
organizations_developers_get_monetization_configSELECTdevelopersId, organizationsIdGets the monetization configuration for the developer.
organizations_developers_update_monetization_configREPLACEdevelopersId, organizationsIdUpdates 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 }}';