Skip to content

Commit

Permalink
Merge ea46440 into 9174ea9
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored Dec 27, 2023
2 parents 9174ea9 + ea46440 commit 6380070
Show file tree
Hide file tree
Showing 13 changed files with 544 additions and 0 deletions.
12 changes: 12 additions & 0 deletions linebot/messaging_api/.openapi-generator/FILES
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,11 @@ model_filter.go
model_flex_block_style.go
model_flex_box.go
model_flex_box_background.go
model_flex_box_border_width.go
model_flex_box_corner_radius.go
model_flex_box_linear_gradient.go
model_flex_box_padding.go
model_flex_box_spacing.go
model_flex_bubble.go
model_flex_bubble_styles.go
model_flex_button.go
Expand All @@ -39,11 +43,17 @@ model_flex_component.go
model_flex_container.go
model_flex_filler.go
model_flex_icon.go
model_flex_icon_size.go
model_flex_image.go
model_flex_image_size.go
model_flex_margin.go
model_flex_message.go
model_flex_offset.go
model_flex_separator.go
model_flex_span.go
model_flex_span_size.go
model_flex_text.go
model_flex_text_font_size.go
model_flex_video.go
model_gender_demographic.go
model_gender_demographic_filter.go
Expand Down Expand Up @@ -120,6 +130,8 @@ model_sticker_message.go
model_subscription_period_demographic.go
model_subscription_period_demographic_filter.go
model_template.go
model_template_image_aspect_ratio.go
model_template_image_size.go
model_template_message.go
model_test_webhook_endpoint_request.go
model_test_webhook_endpoint_response.go
Expand Down
42 changes: 42 additions & 0 deletions linebot/messaging_api/model_flex_box_border_width.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
/**
* LINE Messaging API
* This document describes LINE Messaging API.
*
* The version of the OpenAPI document: 0.0.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/

/**
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/

//go:generate python3 ../../generate-code.py
package messaging_api

/*
* Width of box border. This is only for `borderWidth` in FlexBox. A value of none means that borders are not rendered; the other values are listed in order of increasing width.
*/

// FlexBoxBorderWidth type
type FlexBoxBorderWidth string

// FlexBoxBorderWidth constants
const (
FlexBoxBorderWidth_NONE FlexBoxBorderWidth = "none"

FlexBoxBorderWidth_LIGHT FlexBoxBorderWidth = "light"

FlexBoxBorderWidth_NORMAL FlexBoxBorderWidth = "normal"

FlexBoxBorderWidth_MEDIUM FlexBoxBorderWidth = "medium"

FlexBoxBorderWidth_SEMI_BOLD FlexBoxBorderWidth = "semi-bold"

FlexBoxBorderWidth_BOLD FlexBoxBorderWidth = "bold"
)
44 changes: 44 additions & 0 deletions linebot/messaging_api/model_flex_box_corner_radius.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
/**
* LINE Messaging API
* This document describes LINE Messaging API.
*
* The version of the OpenAPI document: 0.0.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/

/**
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/

//go:generate python3 ../../generate-code.py
package messaging_api

/*
* Radius at the time of rounding the corners of the box. This is only for `cornerRadius` in FlexBox. A value of none means that corners are not rounded; the other values are listed in order of increasing radius.
*/

// FlexBoxCornerRadius type
type FlexBoxCornerRadius string

// FlexBoxCornerRadius constants
const (
FlexBoxCornerRadius_NONE FlexBoxCornerRadius = "none"

FlexBoxCornerRadius_XS FlexBoxCornerRadius = "xs"

FlexBoxCornerRadius_SM FlexBoxCornerRadius = "sm"

FlexBoxCornerRadius_MD FlexBoxCornerRadius = "md"

FlexBoxCornerRadius_LG FlexBoxCornerRadius = "lg"

FlexBoxCornerRadius_XL FlexBoxCornerRadius = "xl"

FlexBoxCornerRadius_XXL FlexBoxCornerRadius = "xxl"
)
44 changes: 44 additions & 0 deletions linebot/messaging_api/model_flex_box_padding.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
/**
* LINE Messaging API
* This document describes LINE Messaging API.
*
* The version of the OpenAPI document: 0.0.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/

/**
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/

//go:generate python3 ../../generate-code.py
package messaging_api

/*
* Padding can be specified in pixels, percentage (to the parent box width) or with a keyword. FlexBoxPadding just provides only keywords.
*/

// FlexBoxPadding type
type FlexBoxPadding string

// FlexBoxPadding constants
const (
FlexBoxPadding_NONE FlexBoxPadding = "none"

FlexBoxPadding_XS FlexBoxPadding = "xs"

FlexBoxPadding_SM FlexBoxPadding = "sm"

FlexBoxPadding_MD FlexBoxPadding = "md"

FlexBoxPadding_LG FlexBoxPadding = "lg"

FlexBoxPadding_XL FlexBoxPadding = "xl"

FlexBoxPadding_XXL FlexBoxPadding = "xxl"
)
44 changes: 44 additions & 0 deletions linebot/messaging_api/model_flex_box_spacing.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
/**
* LINE Messaging API
* This document describes LINE Messaging API.
*
* The version of the OpenAPI document: 0.0.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/

/**
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/

//go:generate python3 ../../generate-code.py
package messaging_api

/*
* You can specify the minimum space between two components with the `spacing` property of the parent box component, in pixels or with a keyword. FlexBoxSpacing just provides only keywords.
*/

// FlexBoxSpacing type
type FlexBoxSpacing string

// FlexBoxSpacing constants
const (
FlexBoxSpacing_NONE FlexBoxSpacing = "none"

FlexBoxSpacing_XS FlexBoxSpacing = "xs"

FlexBoxSpacing_SM FlexBoxSpacing = "sm"

FlexBoxSpacing_MD FlexBoxSpacing = "md"

FlexBoxSpacing_LG FlexBoxSpacing = "lg"

FlexBoxSpacing_XL FlexBoxSpacing = "xl"

FlexBoxSpacing_XXL FlexBoxSpacing = "xxl"
)
50 changes: 50 additions & 0 deletions linebot/messaging_api/model_flex_icon_size.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
/**
* LINE Messaging API
* This document describes LINE Messaging API.
*
* The version of the OpenAPI document: 0.0.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/

/**
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/

//go:generate python3 ../../generate-code.py
package messaging_api

/*
* You can set the width of an Flex icon component with the `size` property, in pixels, as a percentage, or with a keyword. FlexIconSize just provides only keywords.
*/

// FlexIconSize type
type FlexIconSize string

// FlexIconSize constants
const (
FlexIconSize_XXS FlexIconSize = "xxs"

FlexIconSize_XS FlexIconSize = "xs"

FlexIconSize_SM FlexIconSize = "sm"

FlexIconSize_MD FlexIconSize = "md"

FlexIconSize_LG FlexIconSize = "lg"

FlexIconSize_XL FlexIconSize = "xl"

FlexIconSize_XXL FlexIconSize = "xxl"

FlexIconSize__3XL FlexIconSize = "3xl"

FlexIconSize__4XL FlexIconSize = "4xl"

FlexIconSize__5XL FlexIconSize = "5xl"
)
52 changes: 52 additions & 0 deletions linebot/messaging_api/model_flex_image_size.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
/**
* LINE Messaging API
* This document describes LINE Messaging API.
*
* The version of the OpenAPI document: 0.0.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/

/**
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/

//go:generate python3 ../../generate-code.py
package messaging_api

/*
* You can set the width of an Flex image component with the `size` property, in pixels, as a percentage, or with a keyword. FlexImageSize just provides only keywords.
*/

// FlexImageSize type
type FlexImageSize string

// FlexImageSize constants
const (
FlexImageSize_XXS FlexImageSize = "xxs"

FlexImageSize_XS FlexImageSize = "xs"

FlexImageSize_SM FlexImageSize = "sm"

FlexImageSize_MD FlexImageSize = "md"

FlexImageSize_LG FlexImageSize = "lg"

FlexImageSize_XL FlexImageSize = "xl"

FlexImageSize_XXL FlexImageSize = "xxl"

FlexImageSize__3XL FlexImageSize = "3xl"

FlexImageSize__4XL FlexImageSize = "4xl"

FlexImageSize__5XL FlexImageSize = "5xl"

FlexImageSize_FULL FlexImageSize = "full"
)
44 changes: 44 additions & 0 deletions linebot/messaging_api/model_flex_margin.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
/**
* LINE Messaging API
* This document describes LINE Messaging API.
*
* The version of the OpenAPI document: 0.0.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/

/**
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/

//go:generate python3 ../../generate-code.py
package messaging_api

/*
* You can specify the minimum space before a child component with the `margin` property of the child component, in pixels or with a keyword. FlexMargin just provides only keywords.
*/

// FlexMargin type
type FlexMargin string

// FlexMargin constants
const (
FlexMargin_NONE FlexMargin = "none"

FlexMargin_XS FlexMargin = "xs"

FlexMargin_SM FlexMargin = "sm"

FlexMargin_MD FlexMargin = "md"

FlexMargin_LG FlexMargin = "lg"

FlexMargin_XL FlexMargin = "xl"

FlexMargin_XXL FlexMargin = "xxl"
)
Loading

0 comments on commit 6380070

Please sign in to comment.