Input$UpdateLandingPagesInput constructor
Input$UpdateLandingPagesInput({
- Enum$LandingPageTypeEnum? pageType,
- String? pageReference,
- String? pageTitle,
- String? pageDescription,
- String? url,
- List<
String> ? tags, - Input$SeoComponentInput? seo,
- List<
Input$LandingPagesDataInput> ? sectionData, - List<
Input$LandingPagesTranslationInput> ? translation,
Implementation
factory Input$UpdateLandingPagesInput({
Enum$LandingPageTypeEnum? pageType,
String? pageReference,
String? pageTitle,
String? pageDescription,
String? url,
List<String>? tags,
Input$SeoComponentInput? seo,
List<Input$LandingPagesDataInput>? sectionData,
List<Input$LandingPagesTranslationInput>? translation,
}) =>
Input$UpdateLandingPagesInput._({
if (pageType != null) r'pageType': pageType,
if (pageReference != null) r'pageReference': pageReference,
if (pageTitle != null) r'pageTitle': pageTitle,
if (pageDescription != null) r'pageDescription': pageDescription,
if (url != null) r'url': url,
if (tags != null) r'tags': tags,
if (seo != null) r'seo': seo,
if (sectionData != null) r'sectionData': sectionData,
if (translation != null) r'translation': translation,
});