Sha256: 8236d01523ff614f572aef8719fb9704a972998e5771857f79886030878b0354
Contents?: true
Size: 711 Bytes
Versions: 16
Compression:
Stored size: 711 Bytes
Contents
# Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. # typed: true # frozen_string_literal: true module StackOne module Shared class SocialLink < ::StackOne::Utils::FieldAugmented extend T::Sig # Type of the social link field :type, T.nilable(::String), { 'format_json': { 'letter_case': ::StackOne::Utils.field_name('type') } } # URL of the social link field :url, T.nilable(::String), { 'format_json': { 'letter_case': ::StackOne::Utils.field_name('url') } } sig { params(type: T.nilable(::String), url: T.nilable(::String)).void } def initialize(type: nil, url: nil) @type = type @url = url end end end end
Version data entries
16 entries across 16 versions & 1 rubygems