Komut dosyası projeniz için get
yanıtı oluşturmak üzere oluşturucu.
function getSchema() { const cc = DataStudioApp.createCommunityConnector(); const fields = cc.getFields(); fields.newDimension() .setId('Created') .setName('Date Created') .setDescription('The date that this was created') .setType(cc.FieldType.YEAR_MONTH_DAY); fields.newMetric() .setId('Amount') .setName('Amount (USD)') .setDescription('The cost in US dollars') .setType(cc.FieldType.CURRENCY_USD); return cc.newGetSchemaResponse().setFields(fields).build(); }
Yöntemler
Yöntem | Dönüş türü | Kısa açıklama |
---|---|---|
build() | Object | Bu nesneyi doğrular ve Data Studio'nun ihtiyaç duyduğu biçimde döndürür. |
print | String | Bu nesnenin JSON gösterimini yazdırır. |
set | Get | Oluşturucunun Fields değerini ayarlar. |
Ayrıntılı dokümanlar
build()
Bu nesneyi doğrular ve Data Studio'nun ihtiyaç duyduğu biçimde döndürür.
Return
Object
: Doğrulanmış Get
nesnesi.
print Json()
Bu nesnenin JSON gösterimini yazdırır. Bu yalnızca hata ayıklama içindir.
Return
String
set Fields(fields)
Oluşturucunun Fields
değerini ayarlar.
Parametreler
Ad | Tür | Açıklama |
---|---|---|
fields | Fields | Ayarlanacak alanlar. |
Return
Get
: Zincirleme için bu oluşturucu.