114 lines
3.8 KiB
Ruby
114 lines
3.8 KiB
Ruby
# Copyright 2015 Google Inc.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
require 'date'
|
|
require 'google/apis/core/base_service'
|
|
require 'google/apis/core/json_representation'
|
|
require 'google/apis/core/hashable'
|
|
require 'google/apis/errors'
|
|
|
|
module Google
|
|
module Apis
|
|
module WebfontsV1
|
|
|
|
# Metadata describing a family of fonts.
|
|
class Webfont
|
|
include Google::Apis::Core::Hashable
|
|
|
|
# The category of the font.
|
|
# Corresponds to the JSON property `category`
|
|
# @return [String]
|
|
attr_accessor :category
|
|
|
|
# The name of the font.
|
|
# Corresponds to the JSON property `family`
|
|
# @return [String]
|
|
attr_accessor :family
|
|
|
|
# The font files (with all supported scripts) for each one of the available
|
|
# variants, as a key : value map.
|
|
# Corresponds to the JSON property `files`
|
|
# @return [Hash<String,String>]
|
|
attr_accessor :files
|
|
|
|
# This kind represents a webfont object in the webfonts service.
|
|
# Corresponds to the JSON property `kind`
|
|
# @return [String]
|
|
attr_accessor :kind
|
|
|
|
# The date (format "yyyy-MM-dd") the font was modified for the last time.
|
|
# Corresponds to the JSON property `lastModified`
|
|
# @return [String]
|
|
attr_accessor :last_modified
|
|
|
|
# The scripts supported by the font.
|
|
# Corresponds to the JSON property `subsets`
|
|
# @return [Array<String>]
|
|
attr_accessor :subsets
|
|
|
|
# The available variants for the font.
|
|
# Corresponds to the JSON property `variants`
|
|
# @return [Array<String>]
|
|
attr_accessor :variants
|
|
|
|
# The font version.
|
|
# Corresponds to the JSON property `version`
|
|
# @return [String]
|
|
attr_accessor :version
|
|
|
|
def initialize(**args)
|
|
update!(**args)
|
|
end
|
|
|
|
# Update properties of this object
|
|
def update!(**args)
|
|
@category = args[:category] if args.key?(:category)
|
|
@family = args[:family] if args.key?(:family)
|
|
@files = args[:files] if args.key?(:files)
|
|
@kind = args[:kind] if args.key?(:kind)
|
|
@last_modified = args[:last_modified] if args.key?(:last_modified)
|
|
@subsets = args[:subsets] if args.key?(:subsets)
|
|
@variants = args[:variants] if args.key?(:variants)
|
|
@version = args[:version] if args.key?(:version)
|
|
end
|
|
end
|
|
|
|
# Response containing the list of fonts currently served by the Google Fonts API.
|
|
class WebfontList
|
|
include Google::Apis::Core::Hashable
|
|
|
|
# The list of fonts currently served by the Google Fonts API.
|
|
# Corresponds to the JSON property `items`
|
|
# @return [Array<Google::Apis::WebfontsV1::Webfont>]
|
|
attr_accessor :items
|
|
|
|
# This kind represents a list of webfont objects in the webfonts service.
|
|
# Corresponds to the JSON property `kind`
|
|
# @return [String]
|
|
attr_accessor :kind
|
|
|
|
def initialize(**args)
|
|
update!(**args)
|
|
end
|
|
|
|
# Update properties of this object
|
|
def update!(**args)
|
|
@items = args[:items] if args.key?(:items)
|
|
@kind = args[:kind] if args.key?(:kind)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|