Sha256: 8efb264e560ac7a05587c87724920363b82989dce3611312dd4575ce45d9876f
Contents?: true
Size: 520 Bytes
Versions: 37
Compression:
Stored size: 520 Bytes
Contents
# frozen_string_literal: true require 'graphql' module Osso module GraphQL module Types class RedirectUrisInput < Types::BaseInputObject description 'Attributes for creating or updating a collection of redirect URIs for an Oauth Client' argument :id, ID, 'Database ID', required: false argument :uri, String, 'URI value', required: true argument :primary, Boolean, 'Whether the URI is the primary uri used in IDP initiated login', required: true end end end end
Version data entries
37 entries across 37 versions & 1 rubygems