Sha256: 13aa48e2d6bd40b924fb7dae326663c57d6523f0f3d87cfe9511bff87b0a55d3
Contents?: true
Size: 1.49 KB
Versions: 7
Compression:
Stored size: 1.49 KB
Contents
# Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. # typed: true # frozen_string_literal: true module SpeakeasyClientSDK module Shared # A request to configure a GitHub repository for mintlify class GithubConfigureMintlifyRepoRequest < ::SpeakeasyClientSDK::Utils::FieldAugmented extend T::Sig # The input OpenAPI document field :input, ::String, { 'format_json': { 'letter_case': ::SpeakeasyClientSDK::Utils.field_name('input') } } # The GitHub organization name field :org, ::String, { 'format_json': { 'letter_case': ::SpeakeasyClientSDK::Utils.field_name('org') } } # The overlays to apply field :overlays, T::Array[::String], { 'format_json': { 'letter_case': ::SpeakeasyClientSDK::Utils.field_name('overlays') } } # The GitHub repository name field :repo, ::String, { 'format_json': { 'letter_case': ::SpeakeasyClientSDK::Utils.field_name('repo') } } # The subdirectory (location of mint.json) field :subdirectory, T.nilable(::String), { 'format_json': { 'letter_case': ::SpeakeasyClientSDK::Utils.field_name('subdirectory') } } sig { params(input: ::String, org: ::String, overlays: T::Array[::String], repo: ::String, subdirectory: T.nilable(::String)).void } def initialize(input: nil, org: nil, overlays: nil, repo: nil, subdirectory: nil) @input = input @org = org @overlays = overlays @repo = repo @subdirectory = subdirectory end end end end
Version data entries
7 entries across 7 versions & 1 rubygems