1// Copyright (c) 2016, 2018, 2019, Oracle and/or its affiliates. All rights reserved.
2// Code generated. DO NOT EDIT.
3
4// OceInstance API
5//
6// Oracle Content and Experience is a cloud-based content hub to drive omni-channel content management and accelerate experience delivery
7//
8
9package oce
10
11import (
12	"github.com/oracle/oci-go-sdk/common"
13)
14
15// WorkflowStep Workflow step of workflow monitor.
16type WorkflowStep struct {
17
18	// workflow step name
19	StepName *string `mandatory:"false" json:"stepName"`
20
21	// workflow step status
22	Status *string `mandatory:"false" json:"status"`
23}
24
25func (m WorkflowStep) String() string {
26	return common.PointerString(m)
27}
28