Sha256: e7617615d731ccd5cf2fca1a980c1a93f608f22e0be216cf7ba227ec75057675
Contents?: true
Size: 1.31 KB
Versions: 1
Compression:
Stored size: 1.31 KB
Contents
# Code generated by Speakeasy (https://speakeasyapi.com). DO NOT EDIT. # typed: true # frozen_string_literal: true module OpenApiSDK module Operations class GetLinkInfoRequest < ::OpenApiSDK::Utils::FieldAugmented extend T::Sig field :domain, T.nilable(::String), { 'query_param': { 'field_name': 'domain', 'style': 'form', 'explode': true } } # This is the ID of the link in the your database. Must be prefixed with `ext_` when passed as a query parameter. field :external_id, T.nilable(::String), { 'query_param': { 'field_name': 'externalId', 'style': 'form', 'explode': true } } # The key of the link to retrieve. E.g. for `d.to/github`, the key is `github`. field :key, T.nilable(::String), { 'query_param': { 'field_name': 'key', 'style': 'form', 'explode': true } } # The unique ID of the short link. field :link_id, T.nilable(::String), { 'query_param': { 'field_name': 'linkId', 'style': 'form', 'explode': true } } sig { params(domain: T.nilable(::String), external_id: T.nilable(::String), key: T.nilable(::String), link_id: T.nilable(::String)).void } def initialize(domain: nil, external_id: nil, key: nil, link_id: nil) @domain = domain @external_id = external_id @key = key @link_id = link_id end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
dub-0.2.2.pre.alpha.4 | lib/open_api_sdk/models/operations/getlinkinfo_request.rb |