Sha256: 9ea41fa8a5b9d1663d36f77f24b9209569426b26551ac07ea3d3e9c4d7ceb1e9
Contents?: true
Size: 775 Bytes
Versions: 3
Compression:
Stored size: 775 Bytes
Contents
# Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. # typed: true # frozen_string_literal: true require 'sorbet-runtime' require 'faraday' module StackOne module Shared class Security < ::StackOne::Utils::FieldAugmented extend T::Sig field :password, T.nilable(String), { 'security': { 'scheme': true, 'type': 'http', 'sub_type': 'basic', 'field_name': 'password' } } field :username, T.nilable(String), { 'security': { 'scheme': true, 'type': 'http', 'sub_type': 'basic', 'field_name': 'username' } } sig { params(password: T.nilable(String), username: T.nilable(String)).void } def initialize(password: nil, username: nil) @password = password @username = username end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
stackone_client-0.1.0 | lib/stackone/models/shared/security.rb |
stackone_client-0.0.3 | lib/stackone/models/shared/security.rb |
stackone_client-0.0.2 | lib/stackone/models/shared/security.rb |