1/*
2* Copyright 2018 - Present Okta, Inc.
3*
4* Licensed under the Apache License, Version 2.0 (the "License");
5* you may not use this file except in compliance with the License.
6* You may obtain a copy of the License at
7*
8*      http://www.apache.org/licenses/LICENSE-2.0
9*
10* Unless required by applicable law or agreed to in writing, software
11* distributed under the License is distributed on an "AS IS" BASIS,
12* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13* See the License for the specific language governing permissions and
14* limitations under the License.
15 */
16
17// AUTO-GENERATED!  DO NOT EDIT FILE DIRECTLY
18
19package okta
20
21import (
22	"time"
23)
24
25type IdentityProviderPolicy struct {
26	Embedded     interface{}           `json:"_embedded,omitempty"`
27	Links        interface{}           `json:"_links,omitempty"`
28	Conditions   *PolicyRuleConditions `json:"conditions,omitempty"`
29	Created      *time.Time            `json:"created,omitempty"`
30	Description  string                `json:"description,omitempty"`
31	Id           string                `json:"id,omitempty"`
32	LastUpdated  *time.Time            `json:"lastUpdated,omitempty"`
33	Name         string                `json:"name,omitempty"`
34	Priority     int64                 `json:"priority,omitempty"`
35	Status       string                `json:"status,omitempty"`
36	System       *bool                 `json:"system,omitempty"`
37	Type         string                `json:"type,omitempty"`
38	AccountLink  *PolicyAccountLink    `json:"accountLink,omitempty"`
39	MaxClockSkew int64                 `json:"maxClockSkew,omitempty"`
40	Provisioning *Provisioning         `json:"provisioning,omitempty"`
41	Subject      *PolicySubject        `json:"subject,omitempty"`
42}
43