GoogleCloudRetailV2UserEventInputConfig.fromJson constructor
GoogleCloudRetailV2UserEventInputConfig.fromJson(
- Map json_
Implementation
GoogleCloudRetailV2UserEventInputConfig.fromJson(core.Map json_)
: this(
bigQuerySource:
json_.containsKey('bigQuerySource')
? GoogleCloudRetailV2BigQuerySource.fromJson(
json_['bigQuerySource']
as core.Map<core.String, core.dynamic>,
)
: null,
gcsSource:
json_.containsKey('gcsSource')
? GoogleCloudRetailV2GcsSource.fromJson(
json_['gcsSource'] as core.Map<core.String, core.dynamic>,
)
: null,
userEventInlineSource:
json_.containsKey('userEventInlineSource')
? GoogleCloudRetailV2UserEventInlineSource.fromJson(
json_['userEventInlineSource']
as core.Map<core.String, core.dynamic>,
)
: null,
);