@@ -320,13 +320,17 @@ module Line
320320 VerifyChannelAccessTokenResponse # when HTTP status code is 200
321321 | String? # otherwise
322322 )
323+ # Issues a new stateless channel access token by JWT assertion.
324+ # This is a convenience wrapper that only requires the parameters needed for JWT assertion authentication.
323325 def issue_stateless_channel_token_by_jwt_assertion : (
324326 client_assertion: String
325327 ) -> (
326328 IssueStatelessChannelAccessTokenResponse # when HTTP status code is 200
327329 | String? # otherwise
328330 )
329331
332+ # Issues a new stateless channel access token by client secret.
333+ # This is a convenience wrapper that only requires the parameters needed for client secret authentication.
330334 def issue_stateless_channel_token_by_client_secret : (
331335 client_id: String,
332336 client_secret: String
@@ -335,13 +339,19 @@ module Line
335339 | String? # otherwise
336340 )
337341
342+ # Issues a new stateless channel access token by JWT assertion.
343+ # This is a convenience wrapper that only requires the parameters needed for JWT assertion authentication.
344+ # When you want to get HTTP status code or response headers, use this instead of #issue_stateless_channel_token_by_jwt_assertion.
338345 def issue_stateless_channel_token_by_jwt_assertion_with_http_info : (
339346 client_assertion: String
340347 ) -> (
341348 [IssueStatelessChannelAccessTokenResponse, 200, Hash[untyped , untyped ]] # when HTTP status code is 200
342349 | [String?, Integer, Hash[untyped , untyped ]] # otherwise
343350 )
344351
352+ # Issues a new stateless channel access token by client secret.
353+ # This is a convenience wrapper that only requires the parameters needed for client secret authentication.
354+ # When you want to get HTTP status code or response headers, use this instead of #issue_stateless_channel_token_by_client_secret.
345355 def issue_stateless_channel_token_by_client_secret_with_http_info : (
346356 client_id: String,
347357 client_secret: String
0 commit comments