Class ContentSource.Builder
- java.lang.Object
-
- com.intercom.api.resources.unstable.aicontentsource.types.ContentSource.Builder
-
- Enclosing class:
- ContentSource
public static final class ContentSource.Builder extends java.lang.Object
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ContentSourcebuild()ContentSource.BuildercontentType(ContentSource.ContentType contentType)ContentSource.BuildercontentType(java.util.Optional<ContentSource.ContentType> contentType)The type of the content source.ContentSource.Builderfrom(ContentSource other)ContentSource.Builderlocale(java.lang.String locale)ContentSource.Builderlocale(java.util.Optional<java.lang.String> locale)The ISO 639 language code of the content source.ContentSource.Buildertitle(java.lang.String title)ContentSource.Buildertitle(java.util.Optional<java.lang.String> title)The title of the content source.ContentSource.Builderurl(java.lang.String url)ContentSource.Builderurl(java.util.Optional<java.lang.String> url)The internal URL linking to the content source for teammates.
-
-
-
Method Detail
-
from
public ContentSource.Builder from(ContentSource other)
-
contentType
public ContentSource.Builder contentType(java.util.Optional<ContentSource.ContentType> contentType)
The type of the content source.
-
contentType
public ContentSource.Builder contentType(ContentSource.ContentType contentType)
-
url
public ContentSource.Builder url(java.util.Optional<java.lang.String> url)
The internal URL linking to the content source for teammates.
-
url
public ContentSource.Builder url(java.lang.String url)
-
title
public ContentSource.Builder title(java.util.Optional<java.lang.String> title)
The title of the content source.
-
title
public ContentSource.Builder title(java.lang.String title)
-
locale
public ContentSource.Builder locale(java.util.Optional<java.lang.String> locale)
The ISO 639 language code of the content source.
-
locale
public ContentSource.Builder locale(java.lang.String locale)
-
build
public ContentSource build()
-
-