Skip to content
This repository was archived by the owner on Jan 11, 2023. It is now read-only.
Merged
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
Generated from 75323f05a927062b5014965600bc3c5e195e6619
  • Loading branch information
SwaggerToSDK Automation committed Sep 21, 2017
commit 9d9df84e5988eaf53128062368bb969a16735b98
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,9 @@ class Application
# @return [String] The home page of the application.
attr_accessor :homepage

# @return [Boolean] Whether to allow implicit grant flow for OAuth2
attr_accessor :oauth2allow_implicit_flow


#
# Mapper for Application class as Ruby Hash.
Expand Down Expand Up @@ -137,6 +140,13 @@ def self.mapper()
type: {
name: 'String'
}
},
oauth2allow_implicit_flow: {
required: false,
serialized_name: 'oauth2AllowImplicitFlow',
type: {
name: 'Boolean'
}
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,9 @@ class ApplicationCreateParameters
# objects.
attr_accessor :password_credentials

# @return [Boolean] Whether to allow implicit grant flow for OAuth2
attr_accessor :oauth2allow_implicit_flow


#
# Mapper for ApplicationCreateParameters class as Ruby Hash.
Expand Down Expand Up @@ -127,6 +130,13 @@ def self.mapper()
}
}
}
},
oauth2allow_implicit_flow: {
required: false,
serialized_name: 'oauth2AllowImplicitFlow',
type: {
name: 'Boolean'
}
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,9 @@ class ApplicationUpdateParameters
# objects.
attr_accessor :password_credentials

# @return [Boolean] Whether to allow implicit grant flow for OAuth2
attr_accessor :oauth2allow_implicit_flow


#
# Mapper for ApplicationUpdateParameters class as Ruby Hash.
Expand Down Expand Up @@ -126,6 +129,13 @@ def self.mapper()
}
}
}
},
oauth2allow_implicit_flow: {
required: false,
serialized_name: 'oauth2AllowImplicitFlow',
type: {
name: 'Boolean'
}
}
}
}
Expand Down