Skip to content

Commit e67633b

Browse files
committed
NO-ISSUE gen
1 parent 6b30131 commit e67633b

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

lib/line/bot/v2/webhook/model/source.rb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ module Webhook
1515
# @see https://developers.line.biz/en/reference/messaging-api/#source-user
1616
class Source
1717
# @!attribute [rw] type
18-
# @return [String,nil] source type
18+
# @return [String] source type
1919
attr_accessor :type
2020

21-
# @param type [String,nil] source type
21+
# @param type [String] source type
2222
def initialize(
23-
type: nil,
23+
type:,
2424
**dynamic_attributes
2525
)
2626

sig/line/bot/v2/webhook/model/source.rbs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ module Line
1414
# the source of the event.
1515
# @see https://developers.line.biz/en/reference/messaging-api/#source-user
1616
class Source
17-
attr_accessor type: String?
17+
attr_accessor type: String
1818

1919
def initialize: (
20-
type: String?
20+
type: String
2121
) -> void
2222

2323
def self.create: (args: Hash[Symbol, untyped]) -> Source

0 commit comments

Comments
 (0)