Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions Line.Messaging/Messages/Flex/BubbleContainer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,14 @@ public class BubbleContainer : IFlexContainer
{
public FlexContainerType Type => FlexContainerType.Bubble;

/// <summary>
/// The size of the bubble.
/// You can specify one of the following values: nano, micro, kilo, mega, or giga.
/// The default value is mega.
/// <para>(Optional)</para>
/// </summary>
public FlexBubbleContainerSize Size => FlexBubbleContainerSize.Mega;

/// <summary>
/// Text directionality and the order of components in horizontal boxes in the container. <para>
/// Specify one of the following values:
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@

using System;
namespace Line.Messaging
{
public enum FlexBubbleContainerSize
{
Nano,
Micro,
Kilo,
Mega,
Giga
}
}