Sha256: b6de9a0a48b47443575c4f1b93faf3cb48a0591f011dbbf9f74b53d327a3cec0
Contents?: true
Size: 1001 Bytes
Versions: 1
Compression:
Stored size: 1001 Bytes
Contents
# Code generated by Speakeasy (https://speakeasyapi.com). DO NOT EDIT. # typed: true # frozen_string_literal: true module OpenApiSDK module Operations # The retrieved metatags class GetMetatagsResponseBody < ::OpenApiSDK::Utils::FieldAugmented extend T::Sig # The meta description tag for the URL. field :description, ::String, { 'format_json': { 'letter_case': ::OpenApiSDK::Utils.field_name('description') } } # The OpenGraph image for the URL. field :image, ::String, { 'format_json': { 'letter_case': ::OpenApiSDK::Utils.field_name('image') } } # The meta title tag for the URL. field :title, ::String, { 'format_json': { 'letter_case': ::OpenApiSDK::Utils.field_name('title') } } sig { params(description: ::String, image: ::String, title: ::String).void } def initialize(description: nil, image: nil, title: nil) @description = description @image = image @title = title 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/getmetatags_responsebody.rb |